<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Paul Natsuo Kishimoto - 2017</title><link href="https://paul.kishimoto.name/" rel="alternate"/><link href="https://paul.kishimoto.name/feeds/2017.atom.xml" rel="self"/><id>https://paul.kishimoto.name/</id><updated>2017-09-13T00:00:00+02:00</updated><entry><title>Using LaTeX in 17.310J</title><link href="https://paul.kishimoto.name/2017/09/using-latex-in-17310j" rel="alternate"/><published>2017-09-13T00:00:00+02:00</published><updated>2017-09-13T00:00:00+02:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-09-13:/2017/09/using-latex-in-17310j</id><summary type="html">&lt;p&gt;As a Technology &amp;amp; Policy Program student, you need to prepare a research thesis for your S.M.; if you're in another MIT graduate program, you will likely also need to prepare a thesis or academic publication at some point during your degree!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why?&lt;/strong&gt; Compared to Microsoft Word, the &lt;a href="https://en.wikipedia.org/wiki/LaTeX"&gt;LaTeX&lt;/a&gt; document preparation system can save you considerable time in writing your thesis, as well as other documents such as academic publications and the writing assignments for &lt;em&gt;Science, Technology, and Public Policy&lt;/em&gt;. At the same time, the results will be more elegant, readable, reusable, and reproducible. STPP coursework is a great opportunity …&lt;/p&gt;</summary><content type="html">&lt;p&gt;As a Technology &amp;amp; Policy Program student, you need to prepare a research thesis for your S.M.; if you're in another MIT graduate program, you will likely also need to prepare a thesis or academic publication at some point during your degree!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why?&lt;/strong&gt; Compared to Microsoft Word, the &lt;a href="https://en.wikipedia.org/wiki/LaTeX"&gt;LaTeX&lt;/a&gt; document preparation system can save you considerable time in writing your thesis, as well as other documents such as academic publications and the writing assignments for &lt;em&gt;Science, Technology, and Public Policy&lt;/em&gt;. At the same time, the results will be more elegant, readable, reusable, and reproducible. STPP coursework is a great opportunity to begin climbing the LaTeX learning curve.&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This post, and possibly subsequent posts, will contain opinionated&lt;sup id="fnref:2"&gt;&lt;a class="footnote-ref" href="#fn:2"&gt;2&lt;/a&gt;&lt;/sup&gt; tips and links to resources. I'm also offering (perhaps foolishly) to help with any thorny LaTeX problems.&lt;sup id="fnref:3"&gt;&lt;a class="footnote-ref" href="#fn:3"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Please e-mail or post in the comments below with any suggested additions or resources that you find helpful in your LaTeX learning.&lt;/p&gt;
&lt;h2&gt;Getting started with Overleaf&lt;/h2&gt;
&lt;p&gt;Eventually, you will want to &lt;a href="https://en.wikibooks.org/wiki/LaTeX/Installation#Distributions"&gt;install LaTeX on your own computer&lt;/a&gt;—especially for working without Internet access. But for a quick start, &lt;a href="https://www.overleaf.com/signup?ref=a4249dbf1feb"&gt;&lt;strong&gt;Overleaf&lt;/strong&gt;&lt;/a&gt; is a great option. It's a collaborative, in-browser LaTeX editor; analogous to Google Docs.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Here is &lt;a href="https://www.overleaf.com/11056012tyqqdkqkdpcy"&gt;a template for the paper topic memo&lt;/a&gt;. Please &lt;em&gt;duplicate&lt;/em&gt; this project: go to your Overleaf dashboard/“My Projects” page, click the down arrow at right, and select “Open a Copy”.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Bibliographies &amp;amp; the &lt;code&gt;17.310j-fa17&lt;/code&gt; repo&lt;/h2&gt;
&lt;p&gt;BibTeX and BibLaTeX (don't worry about the distinction) are powerful tools for citations and bibliographies. They allow you to free up mental space &amp;amp; effort from worrying about the trivialities of APA, MLA, Chicago or other citation styles.&lt;/p&gt;
&lt;p&gt;You instead use a BibTeX &lt;em&gt;database&lt;/em&gt; with entries that look like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;@book{viscusi-2005,
    author = {Viscusi, W. Kip and Harrington, Jr., Joseph E. and Vernon, John M.},
    edition = {4},
    isbn = {9780262220750},  % print edition
    publisher = {MIT Press},
    title = {Economics of Regulation and Antitrust},
    year = {2005},
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and then, in your document, cite the entry using its key—here, &lt;code&gt;viscusi-2005&lt;/code&gt;. Most popular citation management tools—Mendeley, Zotero, etc.—and most journal and library websites support import/export of citations in BibTeX format.&lt;/p&gt;
&lt;p&gt;When your LaTeX document is compiled, BibLaTeX takes care of formatting both the citations and bibliography entries. Switching styles is as simple as changing an option, and many advanced features and customization options are offered.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/khaeru/17.310j-fa17"&gt;&lt;code&gt;17.310J-fa17&lt;/code&gt;&lt;/a&gt; is a Github repository where I will maintain a BibTeX database with some of the course readings. If you'd like to contribute to this database and are familiar with &lt;a href="https://git-scm.com"&gt;git&lt;/a&gt; and &lt;a href="https://github.com"&gt;Github&lt;/a&gt;,&lt;sup id="fnref:4"&gt;&lt;a class="footnote-ref" href="#fn:4"&gt;4&lt;/a&gt;&lt;/sup&gt; please fork it, add any entries, and submit a &lt;a href="https://github.com/khaeru/17.310j-fa17/pulls"&gt;pull request&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Advanced topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://paul.kishimoto.name/2017/04/latex-using-atom"&gt;Another post on using the Atom editor&lt;/a&gt; for writing LaTeX documents.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnote"&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;Nothing is free; LaTeX is not entirely painless to learn and use. The chief difficulty is that error messages are sometimes cryptic, and one needs to learn how to ‘debug’: isolate part of a document that's interrupting compilation.&amp;#160;&lt;a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 1 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;As with any Free Software, there are many ways to skin a cat, and appropriate choices differ with task, context, and the skills of yourself or your collaborators. Here are only recommendations and opinions that I feel are appropriate for the context (solo work, mostly beginners) and tasks (simple papers) in this course.&amp;#160;&lt;a class="footnote-backref" href="#fnref:2" title="Jump back to footnote 2 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;Though co-learning with your classmates will often work just as well; &lt;a href="http://giyf.com"&gt;Google is your friend&lt;/a&gt;, as is &lt;a href="https://tex.stackexchange.com/"&gt;Stack Exchange&lt;/a&gt;; and you can always try to &lt;a href="https://en.wikipedia.org/wiki/RTFM"&gt;RTFM&lt;/a&gt;. Good troubleshooting skills are part of LaTeX knowledge!&amp;#160;&lt;a class="footnote-backref" href="#fnref:3" title="Jump back to footnote 3 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;Note that you can get a free Github subscription using your MIT e-mail address at &lt;a href="https://education.github.com"&gt;education.github.com&lt;/a&gt;.&amp;#160;&lt;a class="footnote-backref" href="#fnref:4" title="Jump back to footnote 4 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</content><category term="2017"/><category term="LaTeX"/></entry><entry><title>China to ban the sale of internal combustion engine vehicles (ICEVs)—Bloomberg</title><link href="https://paul.kishimoto.name/2017/09/china-to-ban-the-sale-of-internal-combustion-engine-vehicles-icevs-bloomberg" rel="alternate"/><published>2017-09-09T00:00:00+02:00</published><updated>2017-09-09T00:00:00+02:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-09-09:/2017/09/china-to-ban-the-sale-of-internal-combustion-engine-vehicles-icevs-bloomberg</id><summary type="html">&lt;p&gt;Bloomberg &lt;a href="https://www.bloomberg.com/news/articles/2017-09-09/china-to-ban-sale-of-fossil-fuel-cars-in-electric-vehicle-push"&gt;reports&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Xin Guobin, the vice minister of industry and information technology [MIIT], said the government is working with other regulators on a timetable to end production and sales [of fossil-fuel powered vehicles]. The move will have a profound impact on the environment and growth of China’s auto industry, Xin said at an auto forum in Tianjin on Saturday.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is, no doubt, a major announcement. China is the world's largest market for light-duty vehicles (LDVs; cars and light trucks), so the impact will be greater than that of earlier statements from governments in the UK and France. On …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Bloomberg &lt;a href="https://www.bloomberg.com/news/articles/2017-09-09/china-to-ban-sale-of-fossil-fuel-cars-in-electric-vehicle-push"&gt;reports&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Xin Guobin, the vice minister of industry and information technology [MIIT], said the government is working with other regulators on a timetable to end production and sales [of fossil-fuel powered vehicles]. The move will have a profound impact on the environment and growth of China’s auto industry, Xin said at an auto forum in Tianjin on Saturday.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is, no doubt, a major announcement. China is the world's largest market for light-duty vehicles (LDVs; cars and light trucks), so the impact will be greater than that of earlier statements from governments in the UK and France. On the other hand, there's a long road between articulating goals and putting rubber on the road. We can imagine the ways a nascent ban will complicate existing policy issues, and raise new ones. Here, I sketch and phrase a number of these as questions.&lt;/p&gt;
&lt;h1&gt;When?&lt;/h1&gt;
&lt;p&gt;There's no doubt that the market dominance of the ICE will end. The relatively low cost of electricity, the higher efficiency of EVs, the continually-dropping cost of batteries, and improvement in other technologies&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;1&lt;/a&gt;&lt;/sup&gt;, will in the long run combine to overcome the obstacles facing alternative powertrains.&lt;/p&gt;
&lt;p&gt;Put another way: ICEVs would someday all but disappear, even in the absence of a ban.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;How much does China's government want to accelerate this timeline?&lt;/strong&gt; This is a key indicator of the level of importance assigned to this goal. If we imagine ICEV market share gradually declining to single digits by, say, 2045, then a ban by 2040 does little. The ban will not come about overnight, but at the end of a phase-out period for ICEVs.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LDVs have a useful life of about 10–15 years.&lt;sup id="fnref:2"&gt;&lt;a class="footnote-ref" href="#fn:2"&gt;2&lt;/a&gt;&lt;/sup&gt; &lt;strong&gt;What will happen to the many LDVs on the road on the day the ban becomes complete?&lt;/strong&gt; Will they be allowed to continue in use? For how long? These questions point to a wedge between the end date of ICEVs sales and the end of their energy demand and GHG and pollution emissions. We can imagine a scenario where Chinese roads ca. 2060 resemble those of Havana, Cuba, with carefully-preserved, decades-old gasoline cars still in use.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;(How) Will the timing align with China's goals within the UN FCCC?&lt;/strong&gt; Decarbonizing transport will be one of the most costly and difficult aspects of mitigating climate change. Does a ban fit within a complete strategy to achieve an emissions trajectory for stabilization at the targeted level of &amp;lt;2°C?&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;Who &amp;amp; why?&lt;/h1&gt;
&lt;p&gt;China's central government had previously announced goal of 8, 10 and 12% EVs in sales in upcoming years, with a credit trading system for firms unable to meet the target. These targets were recently delayed/watered down, after lobbying from both foreign and domestic automakers.&lt;/p&gt;
&lt;p&gt;This episode raises all the familiar issues from existing and past efforts at LDV regulation, including the U.S. CAFE standards, biofuel mandates, and tailpipe emissions regulation.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;How will the Chinese government determine when, and at what cost, automakers can replace ICEVs in their offerings?&lt;/strong&gt; Firms face strong incentives to make this transition &lt;em&gt;appear&lt;/em&gt; costly and difficult. Even if they see the policy as inevitable, this steering of knowledge used in policymaking can buy them time to find ways to comply.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;What opportunities for competitive advantage will firms and countries see in the timing and terms of the ban?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If China's domestic and JV automakers make a serious push to phase out ICEs on an aggressive timeline, they could develop capacities or technologies that position them well to compete internationally.&lt;/li&gt;
&lt;li&gt;On the other hand, in the near term, foreign manufacturers seem to have the technology advantage, and might benefit from a phase-out that begins in the next few years; &lt;em&gt;unless&lt;/em&gt; special consideration is given to domestics.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cities with vehicle license plate quotas are currently home to more than 100 million Chinese. In some of these systems, EV buyers are exempt from the need to participate in a license plate lottery or auction; an huge implict subsidy of up to USD 15,000, on top of the explicit ones. &lt;strong&gt;How would these exemptions—and the quotas themselves—change in the run-up to a ban?&lt;/strong&gt; With what effects?&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;What &amp;amp; how?&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;What's being banned?&lt;/strong&gt; Cynically, an EV is a “fossil-fuel powered vehicle” if the electricity powering it is generated by burning coal—as may largely be the case in China for many years. A ban on “combustion engine vehicles”—as I've taken the article to mean—is entirely different. The Bloomberg article doesn't contain a direct quote from the vice minister.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;How to create policy certainty?&lt;/strong&gt; It's very easy—as the recent EV quota example shows—to push back dates; a lesson that's also familiar to followers of carbon pricing. A ban can be an effective policy instrument if it follows a timeline that removes, rather than creates, risk for firms that act early to phase out the banned technology; yet there are many handy reasons to delay.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Aside from grandfathering of ‘pure’ ICEVs, &lt;strong&gt;what exemptions might exist?&lt;/strong&gt; The UK announcement was quickly given the caveat that range-extended EVs—like the Chevy Volt—would meet the terms of that ban. Hence the word ‘pure’: internal combustion &lt;em&gt;engines&lt;/em&gt; would continue to exist, so long as they weren't the sole component in a drivetrain. Will China offer a similar exemption to cover long-distance driving?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;What of trucks and heavy-duty vehicles?&lt;/strong&gt; The stakeholders and impacts in this market have significant differences and similarities to the LDV market. Road freight vehicles are still a larger component of energy demand and source of GHG and air pollution emissions in China. Policy targeting only ICEVs would leave a huge gap.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnote"&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;for instance, hydrogen fuel cells for longer-range uses.&amp;#160;&lt;a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 1 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;in the transition to shared mobility, there's been some discussion that cars will face heavy-duty use, and be built for a shorter life—perhaps around five years.&amp;#160;&lt;a class="footnote-backref" href="#fnref:2" title="Jump back to footnote 2 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</content><category term="2017"/><category term="Research"/><category term="China"/><category term="LDVs"/><category term="Energy"/><category term="Policy"/></entry><entry><title>LaTeX using Atom</title><link href="https://paul.kishimoto.name/2017/04/latex-using-atom" rel="alternate"/><published>2017-04-10T00:00:00+02:00</published><updated>2017-04-10T00:00:00+02:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-04-10:/2017/04/latex-using-atom</id><summary type="html">&lt;p&gt;I use LaTeX for my academic work. For some time &lt;a href="https://atom.io"&gt;Atom&lt;/a&gt; has been my editor of choice. Over the years, I've migrated through a variety of workflows, including using dedicated editors like &lt;a href="https://www.lyx.org"&gt;LyX&lt;/a&gt; to write my S.M. thesis.&lt;/p&gt;
&lt;p&gt;Atom is not a dedicated LaTeX editor, but it &lt;em&gt;is&lt;/em&gt; immensely popular. Consequently it has many useful features and packages that I've found improve my productivity for writing code (LaTeX documents are, after all, code).&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;1&lt;/a&gt;&lt;/sup&gt; Some of these are LaTeX-specific, but many are not.&lt;/p&gt;
&lt;p&gt;See previous writing on this use-case by &lt;a href="http://blog.matteomerola.me/2016/02/atom-for-latex"&gt;Matteo Merola&lt;/a&gt; and others.&lt;/p&gt;
&lt;h2&gt;TeX environment &amp;amp; packages&lt;/h2&gt;
&lt;p&gt;I write …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I use LaTeX for my academic work. For some time &lt;a href="https://atom.io"&gt;Atom&lt;/a&gt; has been my editor of choice. Over the years, I've migrated through a variety of workflows, including using dedicated editors like &lt;a href="https://www.lyx.org"&gt;LyX&lt;/a&gt; to write my S.M. thesis.&lt;/p&gt;
&lt;p&gt;Atom is not a dedicated LaTeX editor, but it &lt;em&gt;is&lt;/em&gt; immensely popular. Consequently it has many useful features and packages that I've found improve my productivity for writing code (LaTeX documents are, after all, code).&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;1&lt;/a&gt;&lt;/sup&gt; Some of these are LaTeX-specific, but many are not.&lt;/p&gt;
&lt;p&gt;See previous writing on this use-case by &lt;a href="http://blog.matteomerola.me/2016/02/atom-for-latex"&gt;Matteo Merola&lt;/a&gt; and others.&lt;/p&gt;
&lt;h2&gt;TeX environment &amp;amp; packages&lt;/h2&gt;
&lt;p&gt;I write on &lt;a href="https://www.ubuntu.com/desktop"&gt;Ubuntu&lt;/a&gt;, but most of the following are available for Mac OS or—with more difficulty—Windows.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;a href="https://www.tug.org/texlive"&gt;TeX Live&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;This is the LaTeX distribution available with Ubuntu. By default it contains most of the packages listed below. I work with the default versions, with a small number of exceptions for “fast-moving” packages.&lt;sup id="fnref:2"&gt;&lt;a class="footnote-ref" href="#fn:2"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://www.ctan.org/pkg/beamer"&gt;beamer&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;For slides and posters. See the &lt;a href="https://en.wikibooks.org/wiki/LaTeX"&gt;LaTeX Wikibook&lt;/a&gt; for &lt;a href="https://en.wikibooks.org/wiki/LaTeX/Presentations"&gt;an introduction&lt;/a&gt;.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href="https://github.com/matze/mtheme"&gt;Metropolis&lt;/a&gt; is an attractive, simple, modern theme for beamer. Because it uses more common TrueType (instead of TeX) fonts, it must be compiled with XeLaTeX—pass the &lt;code&gt;-xelatex&lt;/code&gt; option to &lt;code&gt;latexmk&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My &lt;a href="https://github.com/khaeru/tex"&gt;TeX repository&lt;/a&gt; contains a derived &lt;a href="https://github.com/khaeru/tex/blob/master/beamerthememitidss.sty"&gt;MIT IDSS theme&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://www.ctan.org/pkg/biblatex"&gt;biblatex&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;BibLaTeX is a much-advanced, highly-configurable version of the old, BibTeX reference management software.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;I keep my BibTeX database in a separate directory and Git repository from my publications. My &lt;code&gt;~/.profile&lt;/code&gt; file sets the &lt;code&gt;$BIBINPUTS&lt;/code&gt; environment variable so that any LaTeX compilation can find it:&lt;pre&gt;export BIBINPUTS=$HOME/Documents/reference:$BIBINPUTS&lt;/pre&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The LaTeX Wikibook has &lt;a href="https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Entry_and_field_types_in_.bib_files"&gt;a handy table&lt;/a&gt; of entry and field types in BibLaTeX files.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href="http://home.gna.org/kbibtex"&gt;KBibTeX&lt;/a&gt; is a useful GUI for editing my BibTeX database, when I need to. If the &lt;code&gt;localfile&lt;/code&gt; key is defined for an entry, it has a pane that shows an embedded view of the PDF.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="http://pgfplots.sourceforge.net/"&gt;pgfplots&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;Generate figures and tables. Installed manually from version control:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git clone git://git.code.sf.net/p/pgfplots/code pgfplots
cd pgfplots
git checkout 1.14  # or latest version
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Use &lt;code&gt;\pgfplotsset{compat=1.14}&lt;/code&gt; to disable compatibility features.&lt;/p&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://www.ctan.org/pkg/gitinfo2"&gt;gitinfo2&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Installed manually. Watermark documents according to the revision information of the Git repository that contains them.&lt;/dd&gt;
&lt;/dl&gt;
&lt;h3&gt;Own scripts, mini-packages &amp;amp; snippets&lt;/h3&gt;
&lt;p&gt;My &lt;a href="https://github.com/khaeru/scripts"&gt;scripts repository&lt;/a&gt; contains command-line tools I use to help writing LaTeX documents:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;code&gt;bib&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;Some collected utilities in Python for managing a BibTeX database.&lt;pre&gt;&lt;code&gt;Commands:
  check_files  Check files listed with the 'localfiles'...
  import       (DEV) Read new entries into the database.
  kw_list      List all keywords appearing in entries.
  queue        Display a reading queue.
&lt;/code&gt;&lt;/pre&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;code&gt;install-latexmk&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;Install an up-to-date &lt;code&gt;latexmk&lt;/code&gt; on Ubuntu. Version 4.41 (in Ubuntu 16.10) fails to properly recompile BibLaTeX files in some instances.&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;My TeX repository also contains some ‘mini’ packages and snippets of code:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;code&gt;unicode-extra&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;Define Unicode characters like &lt;code&gt;→γ₂&lt;/code&gt; so they can be used directly in equations—much more concise than &lt;code&gt;\rightarrow\gamma_2&lt;/code&gt;.&lt;/dd&gt;
&lt;dt&gt;&lt;code&gt;zh&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;A command &lt;code&gt;\zh{北京}&lt;/code&gt; for short Chinese texts in non-CJK documents.&lt;/dd&gt;
&lt;/dl&gt;
&lt;h2&gt;Atom features &amp;amp; built-in packages&lt;/h2&gt;
&lt;p&gt;For Mac OS X keyboard shortcuts, substitute &lt;code&gt;Cmd&lt;/code&gt; for &lt;code&gt;Ctrl&lt;/code&gt;, or search in the Atom settings for the list of key bindings. The &lt;a href="http://flight-manual.atom.io/using-atom/"&gt;Atom documentation&lt;/a&gt; contains descriptions of other features.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;Toggle line comments (&lt;code&gt;Ctrl+/&lt;/code&gt;)&lt;/dt&gt;
&lt;dd&gt;This is one of the default editor features. To debug LaTeX errors, isolate lines (or Beamer frames) that may contain the problem: select large chunks of your document, &lt;code&gt;Ctrl+/&lt;/code&gt; to comment them out, and recompile. Once you've found and spotted the errors, use &lt;code&gt;Ctrl+/&lt;/code&gt; to reverse.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="http://flight-manual.atom.io/using-atom/sections/editing-and-deleting-text"&gt;Multiple cursors&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;Use &lt;code&gt;Shift+Alt+{Up,Down}&lt;/code&gt; to add cursors above and below the current cursor(s), or use &lt;code&gt;Ctrl&lt;/code&gt; + click to put a cursor anywhere. Any new characters typed, backspaces, or deletions will happen at every cursor simultaneously. This lets you quickly make changes that may be harder to find-and-replace.&lt;sup id="fnref:3"&gt;&lt;a class="footnote-ref" href="#fn:3"&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;To make this feature more useful, keep your code indented and aligned so you can easily, for instance, add a decimal point to all the numbers in a table:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;\begin{tabular}{lc}
  Foo &amp;amp; Bar \\
   12 &amp;amp;  10 \\
    1 &amp;amp; 100 \\
\end{tabular}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;…or prepend &lt;code&gt;\ttfamily&lt;/code&gt; to the description of each list entry:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;\begin{description}
  \item [First] list entry.
  \item [Second] list entry.
\end{description}
&lt;/code&gt;&lt;/pre&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="http://flight-manual.atom.io/using-atom/sections/editing-and-deleting-text/#brackets"&gt;Bracket matching&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;Leaving off a trailing &lt;code&gt;}&lt;/code&gt; in LaTeX can lead to immense headaches in debugging. Use &lt;code&gt;Ctrl+M&lt;/code&gt; (go to matching bracket) at any &lt;code&gt;{&lt;/code&gt; to find its partner—if the cursor doesn't move, there isn't one, and you've made a mistake.&lt;/p&gt;
&lt;p&gt;This package also lets you select all text inside the current brackets, jump to the nearest enclosing bracket, and remove all brackets inside a selection. Use the command palette (&lt;code&gt;Ctrl+P&lt;/code&gt;) or set a shortcut for each of these commands.&lt;/p&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="http://flight-manual.atom.io/using-atom/sections/snippets"&gt;Snippets&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;When starting a new LaTeX environment, such as &lt;code&gt;\begin{itemize}&lt;/code&gt;, type the first few letters of the name, and press &lt;code&gt;Tab&lt;/code&gt;. A complete environment is inserted, with a closing tag, so you don't forget it later. Snippets are customizable.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="http://flight-manual.atom.io/using-atom/sections/version-control-in-atom/#line-diffs"&gt;Git line diffs&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Easily identify which parts of source files have changed since the last commit. The file tree also colours changed or new files.&lt;/dd&gt;
&lt;/dl&gt;
&lt;h2&gt;Community Atom packages&lt;/h2&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/language-latex"&gt;language-latex&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Syntax highlighting for LaTeX.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/linter-chktex"&gt;linter-chktex&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;Linter plugin for LaTeX using &lt;a href="http://www.nongnu.org/chktex"&gt;chktex&lt;/a&gt;, requires &lt;a href="https://atom.io/packages/linter-chktex"&gt;&lt;code&gt;linter&lt;/code&gt;&lt;/a&gt;. A linter searches your code for ‘lint’; not errors, but little mistakes in comparison to proper style or syntax. I write with this package disabled, and only turn it on briefly when I'm finalizing a document or debugging, since it's very opinionated.&lt;/p&gt;
&lt;p&gt;For instance, &lt;code&gt;chktex&lt;/code&gt; will complain about &lt;code&gt;The time since 1900 A.D. has been…&lt;/code&gt; because the final &lt;code&gt;. &lt;/code&gt; would be misintepreted as ending a sentence, when in fact it should be followed by an interword space (&lt;code&gt;.\ &lt;/code&gt;).&lt;/p&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/build-make"&gt;build-make&lt;/a&gt; → &lt;a href="https://www.gnu.org/software/make/"&gt;GNU make&lt;/a&gt; → &lt;a href="http://personal.psu.edu/jcc8//software/latexmk-jcc"&gt;latexmk&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;
&lt;p&gt;Depends on &lt;a href="https://atom.io/packages/build"&gt;&lt;code&gt;build&lt;/code&gt;&lt;/a&gt;. &lt;code&gt;make&lt;/code&gt; looks for a &lt;code&gt;Makefile&lt;/code&gt; in the root of your project, and executes commands based on rules in this file. I use it in concert with &lt;code&gt;latexmk&lt;/code&gt;, a program which understands how to run &lt;code&gt;pdflatex&lt;/code&gt;, &lt;code&gt;biblatex&lt;/code&gt;, and other programs repeatedly to compile a document (and ships with TeX Live). For this, it is sufficient to have a &lt;code&gt;Makefile&lt;/code&gt; with the following:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;all: paper.pdf

paper.pdf: paper.tex
    latexmk -pdf $&amp;lt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;In this setup, Atom (&lt;code&gt;build-make&lt;/code&gt;) invokes &lt;code&gt;make&lt;/code&gt;, and &lt;code&gt;make&lt;/code&gt; in turn invokes &lt;code&gt;latexmk&lt;/code&gt;, which decides whether &lt;code&gt;paper.tex&lt;/code&gt; (or any the other files on which it depends) has changed and recompiles as needed.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;build-make&lt;/code&gt; can be configured to either invoke &lt;code&gt;make&lt;/code&gt; every time a file is saved, &lt;em&gt;or&lt;/em&gt; only when a command (default: &lt;code&gt;F9&lt;/code&gt;) is given. The former is fine for simple documents, but for complex documents that take some time to compile it usually results in my laptop sounding like a jet engine, distracting me from writing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To avoid a messy command line, put options to &lt;code&gt;latexmk&lt;/code&gt; in a file &lt;code&gt;.latexmkrc&lt;/code&gt;:&lt;pre&gt;
# Generate PDFs by default
$pdf_mode = 1;
# -file-line-error: more readable output on errors
# -shell-escape %O %S: allow pdflatex to invoke programs like pygmentize
$pdflatex = "pdflatex -file-line-error -shell-escape %O %S";
# Suppress most output from pdflatex etc.; check the .log file
$silent = 1;
&lt;/pre&gt;
    and give &lt;code&gt;latexmk -r /path/to/.latexmkrc&lt;/code&gt; on the command-line.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/wordcount"&gt;wordcount&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Counts words!&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/zen"&gt;zen&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Full-screen the editor and hide everything but the text.&lt;/dd&gt;
&lt;/dl&gt;
&lt;h3&gt;Other packages&lt;/h3&gt;
&lt;p&gt;Some other LaTeX-specific packages for Atom that I haven't found a need for or don't use, with reasons:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/latexer"&gt;latexer&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Certain LaTeX-specific autocompletions.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/autocomplete-bibtex"&gt;autocomplete-bibtex&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Autocompletion for BibTeX citations. I either am referring to a small number of papers which I've read (exhaustively) and for which I know the citation keys; or am working on a literature review, in which case I have KBibTeX open.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/latex-plus"&gt;latex-plus&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;Appears to be unmaintained.&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/latex"&gt;latex&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;A package for running &lt;code&gt;latexmk&lt;/code&gt; with some options. The &lt;code&gt;build&lt;/code&gt; and &lt;code&gt;build-make&lt;/code&gt; packages, being more general, are better maintained; also I use &lt;code&gt;make&lt;/code&gt; to do things besides compile LaTeX documents.&lt;sup id="fnref:4"&gt;&lt;a class="footnote-ref" href="#fn:4"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;a href="https://atom.io/packages/pdf-view"&gt;pdf-view&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;I use &lt;a href="https://wiki.gnome.org/Apps/Evince"&gt;Evince&lt;/a&gt;, the default document viewer on Ubuntu.&lt;sup id="fnref:5"&gt;&lt;a class="footnote-ref" href="#fn:5"&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;div class="footnote"&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;My work often involves switching back and forth between a document, and code to support what I'm writing: primary analysis; post-processing code that produces figures and tables; and &lt;a href="https://atom.io/packages/Hydrogen"&gt;Hydrogen&lt;/a&gt; for quick calculations. Using a general-purpose editor, I can have these as different tabs in the same application, rather than different applications.&amp;#160;&lt;a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 1 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;TeX Live comes out with a new release every year, and Ubuntu releases every six months, so this entails any feature that I really need within a year of its being developed. Most popular LaTeX packages are fairly static, and new features cover use-cases that don't apply to my work.&amp;#160;&lt;a class="footnote-backref" href="#fnref:2" title="Jump back to footnote 2 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;A subject for another post.&amp;#160;&lt;a class="footnote-backref" href="#fnref:4" title="Jump back to footnote 3 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:5"&gt;
&lt;p&gt;My greatest complaint about Atom is performance. Atom is built on the &lt;a href="https://en.wikipedia.org/wiki/Electron_(software_framework)"&gt;Electron&lt;/a&gt; framework that includes the open-source version of Google Chrome. This is highly optimized for running JavaScript, but is not always as fast as native code. I have an old (ca. 2013) Dell XPS 13 laptop, and I also run &lt;a href="https://www.gitkraken.com"&gt;Gitkraken&lt;/a&gt; client for Github &amp;amp; friends—another Electron program; so I am running three browsers, which can bog down my system considerably. &lt;code&gt;pdf-view&lt;/code&gt; makes this problem worse.&amp;#160;&lt;a class="footnote-backref" href="#fnref:5" title="Jump back to footnote 4 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;However, find and replace using &lt;a href="http://www.regular-expressions.info/tutorial.html"&gt;regular expressions&lt;/a&gt; is an immensely powerful skill that rewards invested time, especially when changes have to be made to similar, but not identical, text throughout a document. Atom has both file- (&lt;code&gt;Ctrl+F&lt;/code&gt;) and project-level (&lt;code&gt;Ctrl+Shift+F&lt;/code&gt;) find and replace.&amp;#160;&lt;a class="footnote-backref" href="#fnref:3" title="Jump back to footnote 5 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</content><category term="2017"/><category term="LaTeX"/></entry><entry><title>Barcodes</title><link href="https://paul.kishimoto.name/2017/01/barcodes" rel="alternate"/><published>2017-01-30T00:00:00+01:00</published><updated>2017-01-30T00:00:00+01:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-01-30:/2017/01/barcodes</id><content type="html">&lt;p&gt;&lt;img alt="GitS:SaC newspaper 1" src="https://paul.kishimoto.name/image/2017-01-30_paper1.jpg" /&gt;
&lt;img alt="GitS:SaC newspaper 2" src="https://paul.kishimoto.name/image/2017-01-30_paper2.jpg" /&gt;
Source: &lt;a href="https://en.wikipedia.org/wiki/Ghost_in_the_Shell:_Stand_Alone_Complex"&gt;Ghost in the Shell: Stand Alone Complex&lt;/a&gt; (2006), via Imgur &lt;a href="http://imgur.com/a/f0BqZ"&gt;1&lt;/a&gt;, &lt;a href="http://imgur.com/a/LWTzR"&gt;2&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img alt="Hundreds of people rally against the temporary travel ban during a protest at Detroit Metropolitan airport in Romulus, Michigan, on January 29, 2017." src="https://paul.kishimoto.name/image/2017-01-30_protest.jpg" /&gt;
Source: Rebecca Cook / Reuters (29 January 2017), via &lt;a href="https://www.theatlantic.com/photo/2017/01/a-weekend-of-protest-against-trumps-immigration-ban/514953/#img20"&gt;The Atlantic&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This is the first time I've seen, in person or a photograph, a poster or billboard containing &lt;em&gt;only&lt;/em&gt; a &lt;a href="https://en.wikipedia.org/wiki/QR_code"&gt;QR code&lt;/a&gt;—with no accompanying text.&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;1&lt;/a&gt;&lt;/sup&gt; The code contains a link to this clip from Charlie Chaplin's &lt;em&gt;The Great Dictator&lt;/em&gt; (1940):&lt;/p&gt;
&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/y9MMWLPT3Xc" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;div class="footnote"&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;One exception was a Google recruiting ad on the side of a bus shelter from ca. 2011, but I can't find any reference to it.&amp;#160;&lt;a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 1 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</content><category term="2017"/><category term="Science fiction"/></entry><entry><title>Cansplained: Executive orders</title><link href="https://paul.kishimoto.name/2017/01/cansplained-executive-orders" rel="alternate"/><published>2017-01-25T00:00:00+01:00</published><updated>2017-01-25T00:00:00+01:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-01-25:/2017/01/cansplained-executive-orders</id><summary type="html">&lt;p&gt;&lt;strong&gt;Cansplain (v):&lt;/strong&gt; (not to be confused with &lt;em&gt;mansplain&lt;/em&gt;)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;to nicely explain something about the United States, to Canadians;&lt;/li&gt;
&lt;li&gt;vice versa.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Within minutes of one another, two people asked me to cansplain &lt;strong&gt;executive orders&lt;/strong&gt;. Donald Trump is signing a lot of these, and people are distressed because they're seeming to do &lt;a href="www.vox.com/policy-and-politics/2017/1/25/14390106/leaked-drafts-trump-immigrants-executive-order"&gt;all kinds of terrible things&lt;/a&gt;. What are they?&lt;/p&gt;
&lt;p&gt;You could, of course, &lt;a href="https://en.wikipedia.org/wiki/Executive_order"&gt;read Wikipedia&lt;/a&gt;. Here's a fast-and-loose version.&lt;/p&gt;
&lt;h2&gt;Bureaucracy&lt;/h2&gt;
&lt;p&gt;Most of the work of government happens in a bureaucracy that's organized into units that I will call ‘departments’. There are some important differences:&lt;/p&gt;
&lt;table class="table table-striped table-hover table-responsive"&gt;
  &lt;thead&gt;&lt;tr&gt;
    &lt;th&gt;Thing&lt;/th&gt;
    &lt;th&gt;Canada&lt;/th&gt;
    &lt;th&gt;United States&lt;/th&gt;
  &lt;/tr&gt;&lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Head of government …&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</summary><content type="html">&lt;p&gt;&lt;strong&gt;Cansplain (v):&lt;/strong&gt; (not to be confused with &lt;em&gt;mansplain&lt;/em&gt;)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;to nicely explain something about the United States, to Canadians;&lt;/li&gt;
&lt;li&gt;vice versa.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Within minutes of one another, two people asked me to cansplain &lt;strong&gt;executive orders&lt;/strong&gt;. Donald Trump is signing a lot of these, and people are distressed because they're seeming to do &lt;a href="www.vox.com/policy-and-politics/2017/1/25/14390106/leaked-drafts-trump-immigrants-executive-order"&gt;all kinds of terrible things&lt;/a&gt;. What are they?&lt;/p&gt;
&lt;p&gt;You could, of course, &lt;a href="https://en.wikipedia.org/wiki/Executive_order"&gt;read Wikipedia&lt;/a&gt;. Here's a fast-and-loose version.&lt;/p&gt;
&lt;h2&gt;Bureaucracy&lt;/h2&gt;
&lt;p&gt;Most of the work of government happens in a bureaucracy that's organized into units that I will call ‘departments’. There are some important differences:&lt;/p&gt;
&lt;table class="table table-striped table-hover table-responsive"&gt;
  &lt;thead&gt;&lt;tr&gt;
    &lt;th&gt;Thing&lt;/th&gt;
    &lt;th&gt;Canada&lt;/th&gt;
    &lt;th&gt;United States&lt;/th&gt;
  &lt;/tr&gt;&lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Head of government&lt;/td&gt;
      &lt;td&gt;Member of Parliament who is the leader of the party with the most seats.&lt;/td&gt;
      &lt;td&gt;Elected directly through the Electoral College; not a member of Congress.&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Example department&lt;/td&gt;
      &lt;td&gt;&lt;a href="https://en.wikipedia.org/wiki/Health_Canada"&gt;Health Canada&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;&lt;a href="https://en.wikipedia.org/wiki/United_States_Department_of_Health_and_Human_Services"&gt;Health &amp; Human Services&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Head of department&lt;/td&gt;
      &lt;td&gt;‘Minister’ (usually)&lt;/td&gt;
      &lt;td&gt;‘Secretary’&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;How chosen&lt;/td&gt;
      &lt;td&gt;Elected as a Member of Parliament, then appointed by the Prime Minister.&lt;/td&gt;
      &lt;td&gt;Appointed by the President, then confirmed by the (elected) Senate.&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;And some similarities:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;The &lt;strong&gt;legislature&lt;/strong&gt; (Parliament or Congress) passes &lt;em&gt;enabling legislation&lt;/em&gt; saying, “There shall be a Department of such-and-such, and its responsibilities are to do X, Y, and Z.” In this way, it delegates its authority, so that it doesn't have to pass a new law each time something (for instance) health-related must be done. The legislature might also:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;set up &lt;em&gt;processes of rule-making&lt;/em&gt;, so that when large departments change what they do in ways that affect many people, they are required to give advance notice, consult the public, study the anticipated effects, etc.&lt;/li&gt;
&lt;li&gt;later pass amendments to &lt;em&gt;empower&lt;/em&gt; (“also do U, V, and W”) or &lt;em&gt;limit&lt;/em&gt; (“you are not allowed to get involved in A, B, or C”) departments.&lt;/li&gt;
&lt;li&gt;through the budgets it passes each year, add restrictions or conditions on &lt;em&gt;funding&lt;/em&gt; (“it is forbidden to spend money on A, B, or C”), and control departments' actions by providing or withholding money.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Minister or Secretary&lt;sup id="fnref:1"&gt;&lt;a class="footnote-ref" href="#fn:1"&gt;3&lt;/a&gt;&lt;/sup&gt; can order the staff of the department to do &lt;em&gt;pretty much anything&lt;/em&gt;, as long as it doesn't:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Overstep this specific authority given to the department by the legislature, or&lt;/li&gt;
&lt;li&gt;Break the laws generally (including doing unconstitutional things).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If there's a dispute on either of these points, that's where (in both countries) the &lt;strong&gt;courts&lt;/strong&gt; get involved, and may order government to do, or stop doing, certain things.&lt;/p&gt;
&lt;p&gt;And, of course, things cost money.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Executive orders&lt;/h2&gt;
&lt;p&gt;In the U.S., the President will sign &lt;em&gt;executive orders&lt;/em&gt;, short documents directing one or more departments to do (or stop doing) certain things. His appointed heads of department then carry these things out. To my knowledge, EOs are &lt;em&gt;entirely customary&lt;/em&gt;. That is, the President is not required to issue them; (s)he could simply phone the department head. But most presidents have chosen to do so, since EOs were first used.&lt;/p&gt;
&lt;p&gt;In Canada, essentially the same thing could happen! However, in practice, decisions are often made by Cabinet in confidence, and then implemented with no signed document or proclamation ever coming from the Prime Minister's office.&lt;sup id="fnref:2"&gt;&lt;a class="footnote-ref" href="#fn:2"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2&gt;Who's more powerful?&lt;/h2&gt;
&lt;p&gt;To sidestep trenchant opposition in Congress, Barack Obama did many things by EO, instead of gambling on laws that might not pass. This means they were carefully designed to only contain actions that fit the criteria above. In turn, Trump can neatly nullify the same actions, also by EO.&lt;/p&gt;
&lt;p&gt;If (hypothetically) a U.S. President were to stop issuing EOs altogether and make policy by directing his appointees off-the-record, I suspect people might scream bloody murder, certain that undesirable things were happening. Yet in Canada, this happens every day! For this reason, &lt;a href="http://markjaccard.blogspot.com"&gt;Mark Jaccard&lt;/a&gt; and others refer to Canadian First Ministers (Premiers and the PM) as “temporary dictators.”&lt;/p&gt;
&lt;p&gt;Three Conservative governments under Stephen Harper pursued policies that many Canadians disagreed with—yet some of these actions were not clearly signalled or only became known after the fact, because there was no custom of issuing EOs or notices of Cabinet decision. It will be interesting to see whether the different mechanism in the U.S., by giving opponents of the Trump Administration more advance warning, will allow them to organize more effective opposition.&lt;sup id="fnref:3"&gt;&lt;a class="footnote-ref" href="#fn:3"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;div class="footnote"&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;This is part of why Canadians instead see documents like the fairly vague “budgets” booklets issued by federal governments, or ad-hoc products like the Conservatives' “Economic Action Plan”. These function as statements of policy goals, but on the other hand don't order specific actions, so they can seem vague.&amp;#160;&lt;a class="footnote-backref" href="#fnref:2" title="Jump back to footnote 1 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;Or, worse, whether a Trump administration will eschew the use of EOs!&amp;#160;&lt;a class="footnote-backref" href="#fnref:3" title="Jump back to footnote 2 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;and therefore, the head of government.&amp;#160;&lt;a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 3 in the text"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</content><category term="2017"/><category term="Politics"/><category term="Cansplaining"/></entry><entry><title>Use people's names</title><link href="https://paul.kishimoto.name/2017/01/use-peoples-names" rel="alternate"/><published>2017-01-25T00:00:00+01:00</published><updated>2017-01-25T00:00:00+01:00</updated><author><name>Paul Natsuo Kishimoto</name></author><id>tag:paul.kishimoto.name,2017-01-25:/2017/01/use-peoples-names</id><summary type="html">&lt;p&gt;I often feel that I spend too much time engaged in online political discussion. As I do, I'm aware that this likely does little to change political &lt;em&gt;outcomes&lt;/em&gt;—who gets elected, and what policies they pursue—that concern me and drew me to those discussions in the first place. This is because:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I am stuck in my own communities of like-minded people, and&lt;/li&gt;
&lt;li&gt;Any other person who stumbles across my posts and comments is unlikely to be swayed by reading them, no matter the tone.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;All this said, I still try my best to enter or start discussions that help …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I often feel that I spend too much time engaged in online political discussion. As I do, I'm aware that this likely does little to change political &lt;em&gt;outcomes&lt;/em&gt;—who gets elected, and what policies they pursue—that concern me and drew me to those discussions in the first place. This is because:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I am stuck in my own communities of like-minded people, and&lt;/li&gt;
&lt;li&gt;Any other person who stumbles across my posts and comments is unlikely to be swayed by reading them, no matter the tone.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;All this said, I still try my best to enter or start discussions that help people learn or evolve their viewpoints. In order to do so, I have a few rules of thumb, or &lt;a href="https://paul.kishimoto.name/tag/rules-of-engagement.html"&gt;engagement&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The simplest is to &lt;strong&gt;use people's names&lt;/strong&gt;, and where possible the actual names of groups.&lt;/p&gt;
&lt;p&gt;Once a discussion gets slightly heated, it is only a matter of time until someone drops an epithet like &lt;em&gt;Drumpf&lt;/em&gt;, &lt;em&gt;Shillary&lt;/em&gt;, &lt;em&gt;Harpoid&lt;/em&gt;, &lt;em&gt;McGuilty&lt;/em&gt;, &lt;em&gt;CLOWNservative&lt;/em&gt;, or &lt;em&gt;libtard&lt;/em&gt;. Subtler examples depend on context, and might include &lt;em&gt;leftist&lt;/em&gt;, &lt;em&gt;Trumpkin&lt;/em&gt;, or the use of a diminutive or first name, like &lt;em&gt;Iggy&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Of course, satire, including calling people ridiculous titles and names, political cartoons, and the like, has a valuable political function, in that it refuses seriousness demanded by those who aren't owed deference. But when tossed off lazily in the context of a putative, earnest debate, such names aren't satire, nor are they particularly clever.&lt;/p&gt;
&lt;p&gt;Instead, they attempt to provoke an angry reaction that reduces the chance of any participant or observer learning anything, or changing her mind. They signal lack of respect for others, and thus an unwillingness to countenance or engage with their views.&lt;/p&gt;
&lt;p&gt;So: don't use them! As a corollary, when people do, make a point of using correct names in response, and not rising to the bait.&lt;/p&gt;</content><category term="2017"/><category term="Politics"/><category term="Rules of engagement"/></entry></feed>