-
Notifications
You must be signed in to change notification settings - Fork 8
/
template.tex
119 lines (92 loc) · 4.77 KB
/
template.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% template.tex
%
% LaTeX template for papers conforming to the United States Sections of
% the Combustion Institute style guide.
%
% Authors:
% Bryan W. Weber, University of Connecticut
% Kyle E. Niemeyer, Oregon State University
% Richard H. West, Northeastern University
%
% Unofficial USSCI LaTeX Template by Bryan Weber and Kyle Niemeyer is
% marked with CC0 1.0 Universal. To view a copy of this license, visit
% http://creativecommons.org/publicdomain/zero/1.0
%
% The source for this template can be found at
% https://github.com/pr-omethe-us/ussci-latex-template
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt]{ussci}
%======================================================================
% Remove this in the real document
\usepackage{blindtext}
%======================================================================
% BibLaTeX and biber (not BibTeX) are used to process the references,
% so these packages must be installed on your system. All configuration
% for the bibliography and citations are done in the ussci.cls file
% Add your bibliography file here, replacing template.bib
\addbibresource{template.bib}
%======================================================================
% Replace "Reaction Kinetics" in the line below by your paper topic
\newcommand\papertopic{Reaction Kinetics}
%======================================================================
\title{ Title of Paper }
\author[1]{Author Name}
\author[1]{Author Name}
\author[2]{Author Name}
\author[2,*]{Author Name}
\affil[1]{Department, Institution, Address, Country}
\affil[2]{Department, Institution, Address, Country}
\affil[*]{Corresponding author: \email{[email protected]}}
\begin{document}
\maketitle
%====================================================================
\begin{abstract} % about 200-400 words
Abstract should be between 200--400 words and should state briefly the purpose
of the research, the principal results and major conclusions. An abstract is
often presented separately from the article, so it must be able to stand alone.
For this reason, references should be avoided, but if essential, then cite the
author(s) and year(s). Also, non-standard or uncommon abbreviations should be
avoided, but if essential they must be defined at their first mention in the
abstract itself.
\end{abstract}
% Provide 2-4 keywords describing your research. Only abbreviations firmly
% established in the field may be used. These keywords will be used for
% sessioning/indexing purposes. Use \sep between each keyword.
\begin{keyword}
Keyword1\sep Keyword2\sep Keyword3\sep Keyword4
\end{keyword}
%====================================================================
\section{Introduction}
After presenting at the 14th U.S. National Combustion Meeting you might choose to submit your work for publication in the {\em Proceedings of the Combustion Institute}.
To make that process easier, we recommend anticipating the requirements of that publication. Refer to a recent issue for style, content, and formatting.
Although these guidelines will not be enforced for the current submission, it will save you time later if you comply with them from the beginning:
Figures and tables should ideally fit in a single column, which is 2.67 in (67.7 mm).
Double-column figures and tables should be sized for legibility and must fit within a width of 5.67 in (144 mm).
This \LaTeX\ template is set up to be used with the {\tt biber} bibliography back-end and {\tt biblatex} package instead of {\tt bibtex} and {\tt natbib}.
With it you can use the following cite commands:
Single reference with number only: \cite{Zhao2013}
Multiple references with number only: \cite{Affleck1967,Turanyi2014,cantera}
Single reference with two or fewer authors: \textcite{Affleck1967}
Single reference with three or more authors: \textcite{Wang2011}
Two references with authors: \textcite{Kee1996,Baumgardner2013}
Three or more references with authors: \textcite{Kee1996,Baumgardner2013,Haworth2011}
However, the \LaTeX\ template for submission to the 40th {\em Proceedings of the Combustion Institute} used {\tt bibtex} and {\tt natbib}, so your subsequent submission to the next {\em Proceedings} might be most straightforward if you stick to simple \verb|\cite{}| commands. Then you should have no problems moving your manuscript across.
\section{Methods/Experimental}
%
\blindtext
\section{Results and Discussion}
%
\blindtext
\subsection{Results}
%
\blindtext
\section{Conclusions}
%
\blindtext
\blindtext
\section{Acknowledgements}
This research was funded by \ldots
\noindent\textbf{Page Limits:} The total length of the paper including references should be limited to 10 pages.
\printbibliography
\end{document}