generated from arfc/elsevier-journal-article-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
122 lines (96 loc) · 3.09 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
\documentclass[review]{elsarticle}
%% \documentclass[preprint,12pt,authoryear]{elsarticle}
%% Use the option review to obtain double line spacing
%% \documentclass[authoryear,preprint,review,12pt]{elsarticle}
%% Use the options 1p,twocolumn; 3p; 3p,twocolumn; 5p; or 5p,twocolumn
%% for a journal layout:
%% \documentclass[final,1p,times,authoryear]{elsarticle}
%% \documentclass[final,1p,times,twocolumn,authoryear]{elsarticle}
%% \documentclass[final,3p,times,authoryear]{elsarticle}
%% \documentclass[final,3p,times,twocolumn,authoryear]{elsarticle}
%% \documentclass[final,5p,times,authoryear]{elsarticle}
%% \documentclass[final,5p,times,twocolumn,authoryear]{elsarticle}
\usepackage{multirow}
\usepackage{lineno}
\usepackage{xspace}
\modulolinenumbers[5]
%% Journal name here
\journal{Annals of Nuclear Energy}
%% `Elsevier LaTeX' style
\bibliographystyle{elsarticle-harv}
%%%%%%%%%%%%%%%%%%%%%%%
%%%% packages and definitions (optional)
\usepackage{placeins}
\usepackage{booktabs} % nice rules (thick lines) for tables
\usepackage{microtype} % improves typography for PDF
\usepackage{hhline}
\usepackage{amsmath}
\usepackage{mathtools}
\allowdisplaybreaks % allow page breaks in math environments
\usepackage{graphicx} % allows inclusion of graphics
\graphicspath{{./images/}}
\usepackage{float}
\usepackage{subcaption}
\usepackage{enumitem}
\usepackage{placeins}
\usepackage{siunitx}
\usepackage{diagbox}
\usepackage{courier}
\usepackage{textcomp}
\usepackage{threeparttable, tablefootnote}
\usepackage{tabularx}
\usepackage{pdflscape}
%% Special typesetting for Cyclus
\newcommand{\Cyclus}{\textsc{Cyclus}\xspace}%
\newcommand{\Cycamore}{\textsc{Cycamore}\xspace}%
\graphicspath{{images/}}
% tikz %
\usepackage{tikz}
\usetikzlibrary{positioning, arrows, decorations, shapes}
\usetikzlibrary{shapes.geometric,arrows}
\tikzstyle{process} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=black, fill=blue!30]
\tikzstyle{object} = [ellipse, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=black, fill=green!30]
\tikzstyle{arrow} = [thick,->,>=stealth]
% hyperref %
\usepackage[hidelinks]{hyperref}
% after hyperref %
\usepackage{cleveref}
\usepackage{datatool}
\usepackage[acronym,toc]{glossaries}
\include{acros}
\renewcommand*{\glstextformat}[1]{\textcolor{black}{#1}}
\makeglossaries
\begin{document}
\begin{frontmatter}
\title{Verification of Moltres for Multiphysics Simulations of Fast-Spectrum
Molten Salt Reactors}
%\date{} % uncomment if you need date to appear
% Authors
\input{authors}
% Institutes of the authors
\input{institutions}
\begin{keyword}
Molten salt reactor \sep
Multiphysics \sep
Neutronics \sep
Thermal-hydraulics \sep
Open-source \sep
MOOSE
\end{keyword}
\input{abstract}
\end{frontmatter}
\glsresetall
%% Shows line numbers
%\linenumbers
\input{introduction}
\input{benchmark}
\input{moltres}
\input{results}
\input{conclusion}
\input{acknowledgements}
\bibliography{bibliography}
% Prof. Huff discourages appendices in journal articles.
% But, if you must, include one like so:
\pagebreak
\input{appendix}
\end{document}