-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
163 lines (116 loc) · 5.2 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
%--------------------------------------------------------%
% Journal Article Manuscript Template
%% Copyright 2014 Nicholas E. Reith.
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License,
% either version 1.3 of this license or (at your option)
% any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
% This work has the LPPL maintenance status `unmaintained'.
% This work consists of the files main.tex and subsidiary files:
% (references: biblio.bib), (sections: content.tex, coverpage.tex,
% preamble.tex, title_authors.tex, and title_noauthors.tex), and
% (tables: sample_longtable.tex, and sample_table.tex).
% It also includes the BibTeX reference styles:
% asr.bst, and ajs.bst, borrowed from here:
% http://people.ku.edu/~chkim/
%--------------------------------------------------------%
%--------------------------------------------------------%
% This is the main .tex file, which controls and combines
% the other sections.
% See the "sections" folder to edit content
%--------------------------------------------------------%
\input{sections/preamble} % See preamble.tex to edit the overall layout
% Header from Page Three on: Edit below for left and right headers
\lhead{}
\rhead{Inferring the temperature at which the Last Universal Common Ancestor lived}
%--------------------------------------------------------%
% BEGIN DOCUMENT
%--------------------------------------------------------%
\begin{document}
%TC:ignore %% This region is ignored for the word count
% COVER PAGE
\input{sections/coverpage} % Comment out to remove cover page
%TC:endignore
\thispagestyle{empty} % Removes header on page two. Only needed if there is a coverpage
% TITLE SECTION
% Comment out one of the two lines below to include or exclude authors in article title. You may want to exclude them in case of a double-blind peer review submission, since authors appear on the cover page, and reviewers should not see the authors' names in the manuscript draft.
%\input{sections/title_authors}
\input{sections/title_noauthors}
\maketitle % Insert title
% NOTE: Comment out the lines below to remove line numbers
% Running line numbers:
%\linenumbers
%\setlength\linenumbersep{15pt}
%\renewcommand\linenumberfont{\normalfont\footnotesize\sffamily\color{gray}}
%\pagewiselinenumbers % Same, but that reset on every page:
%\modulolinenumbers[1] % Number only every line. Change for fewer.
%--------------------------------------------------------%
% CONTENT
%--------------------------------------------------------%
% See the content.tex file for the abstract and body text
\input{sections/content}
%--------------------------------------------------------%
% REFERENCE LIST
%--------------------------------------------------------%
\newpage
\singlespacing
% BIBTEX
% NOTE: Comment out next two lines if using biblatex
% \bibliographystyle{pnas2009.bst}
\bibliographystyle{pnas-new-bare}
\bibliography{references/biblio} % Insert bibliography
% BIBLATEX
% NOTE: Uncomment next line to use biblatex
% \printbibliography
%--------------------------------------------------------%
% END NOTES
%--------------------------------------------------------%
% Uncomment these three lines below if using endnotes
% instead of footnotes
% \newpage
% \section*{End Notes}
% \theendnotes
%--------------------------------------------------------%
% FIGURES
%--------------------------------------------------------%
% NOTE: If your submission guidelines don't require figures
% at the end, you can comment out the two lines below,
% and embed figures in the text of content.tex instead of here
%\newpage
%\section*{Figures}
%\begin{figure}[ht!]
%\centering\includegraphics[width=0.4\linewidth]{figures/placeholder}
%\caption{Figure caption}
%\end{figure}
%--------------------------------------------------------%
% TABLES
%--------------------------------------------------------%
% NOTE: If your submission guidelines don't require tables
% at the end, you can comment out the two lines below,
% and embed tables in the text of content.tex instead of here
%\newpage
%\section*{Tables}
%\input{tables/sample_longtable}
%\newpage
%\input{tables/sample_table}
%--------------------------------------------------------%
% WORD COUNT
%--------------------------------------------------------%
% NOTE: Comment out this section, if you wish
% to remove this Word Count page.
% NOTE: AJS wants no more than about 10,000 words total.
%\newpage
%TC:ignore %% This region is ignored for the word count
%\section*{Word Count}
%This document contains approximately {\large \textbf{\wordcount}} before this page, including: title, authors, section headings, abstract, body text, tables, figure captions and references. It seems to ignore most \LaTeX \ code and \%comments, but it treats contractions such as "can't" as one word.
%TC:endignore
%--------------------------------------------------------%
% END DOCUMENT
%--------------------------------------------------------%
\newpage
\printglossaries
\end{document}