-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate.ltx
167 lines (118 loc) · 6.14 KB
/
template.ltx
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
164
165
166
167
%------------------------------------------------------------------------------
% Template file for the submission of papers to IUCr journals in LaTeX2e
% using the iucr document class
% Copyright 1999-2012 International Union of Crystallography
% Version 1.5 (7 March 2012)
%------------------------------------------------------------------------------
\documentclass[preprint]{iucr} % DO NOT DELETE THIS LINE
%-------------------------------------------------------------------------
% Information about journal to which submitted
%-------------------------------------------------------------------------
\journalcode{A} % Indicate the journal to which submitted
% A - Acta Crystallographica Section A
% B - Acta Crystallographica Section B
% C - Acta Crystallographica Section C
% D - Acta Crystallographica Section D
% E - Acta Crystallographica Section E
% F - Acta Crystallographica Section F
% J - Journal of Applied Crystallography
% S - Journal of Synchrotron Radiation
\begin{document} % DO NOT DELETE THIS LINE
%-------------------------------------------------------------------------
% The introductory (header) part of the paper
%-------------------------------------------------------------------------
% The title of the paper. Use \shorttitle to indicate an abbreviated title
% for use in running heads (you will need to uncomment it).
\title{Title of Paper}
%\shorttitle{Short Title}
% Authors' names and addresses. Use \cauthor for the main (contact) author.
% Use \author for all other authors. Use \aff for authors' affiliations.
% Use lower-case letters in square brackets to link authors to their
% affiliations; if there is only one affiliation address, remove the [a].
\cauthor[a]{Forename}{Surname}{email}{address if different from \aff}
\author[b]{Forename}{Surname}
\aff[a]{First affiliation address \country{England}}
\aff[b]{Second affiliation address}
% Use \shortauthor to indicate an abbreviated author list for use in
% running heads (you will need to uncomment it).
%\shortauthor{Soape, Author and Doe}
% Use \vita if required to give biographical details (for authors of
% invited review papers only). Uncomment it.
%\vita{Author's biography}
% Keywords (required for Journal of Synchrotron Radiation only)
% Use the \keyword macro for each word or phrase, e.g.
% \keyword{X-ray diffraction}\keyword{muscle}
%\keyword{keyword}
% PDB and NDB reference codes for structures referenced in the article and
% deposited with the Protein Data Bank and Nucleic Acids Database (Acta
% Crystallographica Section D). Repeat for each separate structure e.g
% \PDBref[dethiobiotin synthetase]{1byi} \NDBref[d(G$_4$CGC$_4$)]{ad0002}
%\PDBref[optional name]{refcode}
%\NDBref[optional name]{refcode}
\maketitle % DO NOT DELETE THIS LINE
\begin{synopsis}
Supply a synopsis of the paper for inclusion in the Table of Contents.
\end{synopsis}
\begin{abstract}
Abstract goes here.
\end{abstract}
%-------------------------------------------------------------------------
% The main body of the paper
%-------------------------------------------------------------------------
% Now enter the text of the document in multiple \section's, \subsection's
% and \subsubsection's as required.
\section{Section title}
Text text text text text text text text text text text text text text
text text text text text text text.
\subsection{Title}
Text text text text text text text text text text text text text text
text text text text text text text.
\subsubsection{Title}
Text text text text text text text text text text text text text text
text text text text text text text.
% Appendices appear after the main body of the text. They are prefixed by
% a single \appendix declaration, and are then structured just like the
% body text.
\appendix
\section{Appendix title}
Text text text text text text text text text text text text text text
text text text text text text text.
\subsection{Title}
Text text text text text text text text text text text text text text
text text text text text text text.
\subsubsection{Title}
Text text text text text text text text text text text text text text
text text text text text text text.
%-------------------------------------------------------------------------
% The back matter of the paper - acknowledgements and references
%-------------------------------------------------------------------------
% Acknowledgements come after the appendices
\ack{Acknowledgements}
% References are at the end of the document, between \begin{references}
% and \end{references} tags. Each reference is in a \reference entry.
\begin{references}
\reference{Author, A. \& Author, B. (1984). \emph{Journal} \textbf{Vol},
first page--last page.}
\end{references}
%-------------------------------------------------------------------------
% TABLES AND FIGURES SHOULD BE INSERTED AFTER THE MAIN BODY OF THE TEXT
%-------------------------------------------------------------------------
% Simple tables should use the tabular environment according to this
% model
\begin{table}
\caption{Caption to table}
\begin{tabular}{llcr} % Alignment for each cell: l=left, c=center, r=right
HEADING & FOR & EACH & COLUMN \\
\hline
entry & entry & entry & entry \\
entry & entry & entry & entry \\
entry & entry & entry & entry \\
\end{tabular}
\end{table}
% Postscript figures can be included with multiple figure blocks
\begin{figure}
\caption{Caption describing figure.}
\includegraphics{fig1.ps}
\end{figure}
\end{document} % DO NOT DELETE THIS LINE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%