Overview

The template produces an academic paper with LaTeX . The paper follows typographical best practices and has a minimalist design—with the aim to be easy to read and to scan in print and on screen.


Download


Features

  • The font for text, roman math, and numbers is Source Serif Pro.
  • The font for Greek and calligraphic math is Euler.
  • No colors are used in the text (only black) to reduce distraction and so the paper prints well; colors are reserved for graphs.
  • Margins, spacing, and font size are set for comfortable reading.
  • Headings and captions are designed so the paper is easy to scan.
  • Formatting is specified for figures and tables.
  • Formatting is specified for appendix and a separate online appendix.
  • Formatting is specified for references.
  • All labels are set to make cross-referencing easy.

Text font

The font determines the appearance and readability of the entire paper, so choosing a good font is key. Following Butterick’s advice , the template uses Source Serif Pro for the template. Source Serif Pro is a serif font—a typical choice for long-form writing. Source Serif Pro is not part of typical paper templates (unlike Times New Roman or Palatino), so it has a new, fresh feel. And since Source Serif Pro was designed in the last decade, it also has a modern feel.

Moreover, the Source Pro family includes a very nice monospaced font: Source Code Pro . The template uses Source Code Pro as monospaced font—giving the monospaced text and regular text a similar look. The monospaced font is used in particular to typeset URLs.

Another advantage of Source Serif Pro is that there is a sans-serif font in the Source Pro family: Source Sans Pro . This presentation template uses Source Sans Pro, which gives presentations and papers produced by the two templates a similar look.


Math font

LaTeX uses one font for text and other fonts for math. For consistency, the template sticks with Source Serif Pro for roman math. It also uses Source Serif Pro for all the numbers in math and for very basic math symbols (such as +, ., –, ?, /, %, =), so very basic mathematical expressions look the same in math and text. For example, the commands 1+5 and $1+5$ produce the same result. The same is true of the command 3\% + 5\% = 0.08 and $3\% + 5\% = 0.08$.

For the Greek letters in math, the template uses the Euler font . These Greek letters look good, have the same thickness and height as the text letters, and are distinctive. For consistency, neither uppercase nor lowercase Greek letters are italicized.

The template also uses the Euler font for calligraphic letters in math. These calligraphic letters fit well with the other fonts and are very readable.

The template uses a simple geometric sans-serif font as blackboard bold font. It is cleaner than the default blackboard bold font. And it includes not only roman letters but also Arabic numbers and Greek letters—which are often omitted in blackboard bold fonts.

Finally, the template use the Symbol font for many symbols in math. The default Computer Modern symbols are very light and thin in comparison to the Source Serif Pro and Euler letters, and as a result do not mix well with them. The advantage of the Symbol font is that its symbols are thicker, so they mix better with the letters. The symbols are also less curly, which gives them a more modern feel.


Font size

The font size is 12pt, which is standard. It is easily readable but not too big. (See also Butterick’s discussion of font sizes.)


Line spacing

The line spacing is 150% of the point size. This is in line with Butterick’s advice . Such spacing avoids that the text is too cramped or too spread out, and makes readings more comfortable.


Text margins

The margins are 1.1 inch. This provides a bit of white space on the page. Furthermore, with such margins, there are always 80–90 characters per line, just as Butterick recommends . Longer lines are harder to read.


Color scheme

As Butterick says , it is better to use color with restraint. A lot of colors, especially bright ones, is distracting. Furthermore, many colors are hard to read when they are printed in black and white. To reduce distraction, and to have a paper that prints well, the template only uses the color black for text. In particular hyperlinks—to sections, references, equations, figures, tables, results, and footnotes—are not colored. The typical, bright boxes surrounding hyperlinks should be avoided as they are distracting without adding any information: at this point everyone knows that LaTeX documents include such hyperlinks.


Title page

The template’s title page contains all the required information: title, authors, date, abstract, affiliations, and acknowledgements. It is otherwise pretty minimalist. There are no “thanks” symbols, no abstract title, no indentation, no page numbers. These elements are common in papers, but they do not convey any useful information, so the template gets rid of them.

The title is bold, centered, and 25pt. Author and date information is centered and 15pt. Abstract is 12pt. Affiliations and acknowledgements are 10pt like the footnotes in the text.

An URL for the paper can be placed at the bottom of the title page by adding the command \available{URL} to the preamble of the document. Such URL allows readers to go easily to the latest version of the paper. With an optional argument, the command can also indicate where the paper has been published: \available[Journal name]{URL} places both the journal name and URL at the bottom of the title page. The URL is displayed in small font (10pt) and gray so as not to be too obtrusive.


Headings

The template’s headings follow Butterick’s advice . Section headings are a bit larger (15pt) and bold. Section headings are also centered to clearly separate sections. Subsection headings are bold. And paragraph headings are just italic, so they are noticeable but not too prominent.

The template does not tailor formatting for subsubsections and smaller headings. Such small headings are a sign that the paper’s organization is too messy, and should be avoided.


Theorems and other results

As is standard, the text of theorems is in italic—providing subtle emphasis. The theorem label is in small caps—again providing subtle emphasis. For consistency, propositions, lemmas, and other results are all formatted just like theorems.


Figures

A figure should be placed at the top of the page where it is first mentioned—not in the middle of the page, and especially not at the end of the paper. Figure panels are centered by default. The figure label is in small caps—just like the theorem label. The figure caption is placed bellow the figure.

The graphs are scaled so a figure with two panels fits well at the top of a page. A figure with four or six panels fits on a whole page. An advantage of avoiding colors in the text is that the colors in figures really stand out.

The figure environment is set up so it is easy to reference a figure (figure 1) or directly a panel in a figure (figure 1A).

With the command \note{Text}, it is easy to enter a note below the figure caption with details about the figure and sources. The note is in 10pt, just like footnotes.

The code for a basic figure with one panel is the following:

\begin{figure}[t]
\includegraphics[scale=0.3]{figure.pdf}
\caption{Figure caption}
\note{Note for figure.}
\label{1}\end{figure}

The code for a figure with two panels is the following:

\begin{figure}[t]
\subcaptionbox{Panel caption\label{1}}{\includegraphics[scale=0.2]{1.pdf}}\hfill
\subcaptionbox{Panel caption\label{2}}{\includegraphics[scale=0.2]{2.pdf}}
\caption{Figure caption}
\note{Note for figure.}
\label{3}\end{figure}

Finally, the code for a figure with six panels is the following:

\begin{figure}[p]
\subcaptionbox{Panel caption\label{1}}{\includegraphics[scale=0.2]{1.pdf}}\hfill
\subcaptionbox{Panel caption\label{2}}{\includegraphics[scale=0.2]{2.pdf}}\vfig
\subcaptionbox{Panel caption\label{3}}{\includegraphics[scale=0.2]{3.pdf}}\hfill
\subcaptionbox{Panel caption\label{4}}{\includegraphics[scale=0.2]{4.pdf}}\vfig
\subcaptionbox{Panel caption\label{5}}{\includegraphics[scale=0.2]{5.pdf}}\hfill
\subcaptionbox{Panel caption\label{6}}{\includegraphics[scale=0.2]{6.pdf}}
\caption{Figure caption}
\note{Note for figure.}
\label{7}\end{figure}

With the above code, a specific panel in a figure can be referenced with figure \ref{1}, which produces figure 1A, and the entire figure can be referenced with figure \ref{7}, which produces figure 1. A panel can also be referenced without mentioning the figure: panel \subref{1} produces panel A.


Tables

A table should be placed at the top of the page where it is first mentioned—not in the middle of the page, and especially not at the end of the paper. Tables are centered by default. The table label is in small caps—just like the figure label. The table caption is placed above the table, as usual. Top and bottom table lines are thicker to clearly demarcate the table. The text in the table is in 10pt. The text is spaced vertically to be easily readable (spacing is insufficient in standard tables).

With the command \note{Text}, it is easy to enter a note below the table with details about the table and sources. The note is in 10pt, just like footnotes.

The code for a basic table is the following:

\begin{table}[t]
\caption{Table caption}
\begin{tabular*}{\textwidth}[]{p{3.3cm}@{\extracolsep\fill}cccc}
\toprule
& Column 1 &  Column 2 &  Column 3  &  Column 4 \\
\midrule
Line 1: & A & B & C  & d \\
Line 2: & E &  F & G  & H   \\
Line 3: & K & V & P  & K  \\
Line 4: & J & M & N  & K  \\
\bottomrule
\end{tabular*}
\note{Note for table.}
\label{1}\end{table}

The code for a more sophisticated table with panels is the following:

\begin{table}[t]
\caption{Table caption}
\begin{tabular*}{\textwidth}[]{p{3.3cm}@{\extracolsep\fill}ccccc}
\toprule
    & Column 1 &  Column 2 &  Column 3  &  Column 4 &  Column 5 \\
\midrule
\multicolumn{6}{l}{A. First panel}\\
Line 1: & A & C & V  & -- & -- \\
Line 2: & X &  H & O  & -- & --   \\
\midrule
\multicolumn{6}{l}{B. Second panel}\\
Line 3: & U & B & J  & K & K \\
Line 4: & N & Y & T  & L & T \\
Line 5: & G & S & Q  & P & Q \\
\bottomrule
\end{tabular*}
\note{Note for table.}
\label{1}\end{table}

Lists

Itemized and numbered list are customized to fit well with the surrounding text. The text after the items is aligned with indented text (the start of a paragraph). All items (bullet points and numbers) are grey so as not to be too prominent. All extra vertical spacing is removed so spacing between list lines is exactly the same as spacing between lines of text.


Citations and references

The format of citations and references follow the guidelines from the Chicago Manual of Style , which are followed by most scientific journals in the US.

The reference list is in slightly smaller font than the text (11pt) and with slightly more compact spacing. The goal is too save some space without affecting readability.

All standard citation commands are usable in the template:

  • Textual citation: \citet{NameYear} gives Name (Year)
  • Textual citation with details: \citet[p. 120]{NameYear} gives Name (Year, p. 120)
  • Parenthetical citation: \citep{NameYear} gives (Name Year)
  • Parenthetical citation with details: \citep[chapter 4]{NameYear} gives (Name Year, chapter 4)
  • Author citation: \citeauthor{NameYear} gives Name
  • Year citation: \citeyear{NameYear} gives Year

Appendix

The template is designed so it is easy to add an appendix at the end of the paper. The appendix starts with the command \appendix. The formatting of the appendix strictly follows that of the main text.

All the appendix sections are clearly marked Appendix and are numbered as Appendix A, Appendix B, Appendix C, and so on. The appendix subsections are also numbered (for instance, A.1, A.2, B.1, B.2) so they can be referred to.

All labels in the appendix start with an A, so it is clear that they point to some material in the appendix: for instance, corollary A1, figure A2, table A3, or equation (A10). All counters are reset at the beginning of the appendix: tables, figures, equations, and theorems. So all the labels start at A1, A2, and so on.


Online appendix

Once a paper gets published, the appendix must often be transformed into an online appendix. To help with this task, the repository also includes a template for online appendices. It adds two features to the paper template:

  • The abstract is replaced by a table of contents.
  • All the labels from the main text (equation numbers, figure and table numbers, theorem numbers, section numbers) continue to be usable in the online appendix. So the cross-references from main text to appendix are not broken even though the appendix is now in a separate file. This requires the following :
    • appendix.tex is in the same folder as paper.tex.
    • paper.tex is compiled first.
    • The auxiliary file paper.aux is available when appendix.tex is compiled.