1 | %% ============================================================================== |
---|
2 | %% SI3 Reference Manual |
---|
3 | %% ============================================================================== |
---|
4 | |
---|
5 | |
---|
6 | %% Preamble |
---|
7 | %% ============================================================================== |
---|
8 | |
---|
9 | %% Document layout |
---|
10 | \documentclass{book} |
---|
11 | |
---|
12 | %% Custom style (.sty) |
---|
13 | \usepackage{../../styles/NEMO} |
---|
14 | \hypersetup{ |
---|
15 | pdftitle={SI³ – Sea Ice modelling Integrated Initiative – The NEMO Sea Ice engine}, |
---|
16 | pdfauthor={NEMO Sea Ice Working Group}, |
---|
17 | colorlinks |
---|
18 | } |
---|
19 | |
---|
20 | %% Include references and index for single subfile compilation |
---|
21 | \newcommand{\biblio}{\bibliography{../main/SI3_manual}} |
---|
22 | \newcommand{\pindex}{\printindex} |
---|
23 | |
---|
24 | \makeindex |
---|
25 | |
---|
26 | %% End of common preamble between main and sub-files |
---|
27 | \begin{document} |
---|
28 | |
---|
29 | %% Override custom cmds for full manual compilation |
---|
30 | \renewcommand{\biblio}{} |
---|
31 | \renewcommand{\pindex}{} |
---|
32 | |
---|
33 | |
---|
34 | %% Frontmatter |
---|
35 | %% ============================================================================== |
---|
36 | |
---|
37 | \graphicspath{{../../figures/logos/}} |
---|
38 | |
---|
39 | %% Frontpage |
---|
40 | \title{ |
---|
41 | \includegraphics[height=0.05\textheight]{CMCC}\hfill |
---|
42 | \includegraphics[height=0.05\textheight]{CNRS}\hfill |
---|
43 | \includegraphics[height=0.05\textheight]{MOI} \hfill |
---|
44 | \includegraphics[height=0.05\textheight]{UKMO}\hfill |
---|
45 | \includegraphics[height=0.05\textheight]{NERC} \\ |
---|
46 | {\Huge SI$^3$ \\} |
---|
47 | {\Large Sea Ice modelling Integrated Initiative -- The NEMO Sea Ice engine}\\ |
---|
48 | {\small \textcolor{red}{First draft documentation. Needs completion and rewriting}.} |
---|
49 | } |
---|
50 | \author{The NEMO Sea Ice Working Group |
---|
51 | % \thanks{ |
---|
52 | % |
---|
53 | % } \\ |
---|
54 | \textit{Issue 27, Notes du P\^{o}le de mod\'{e}lisation} \\ |
---|
55 | \textit{Institut Pierre-Simon Laplace (IPSL)} \\ |
---|
56 | \textit{ISSN 1288-1619} |
---|
57 | } |
---|
58 | \date{\today} |
---|
59 | |
---|
60 | \maketitle |
---|
61 | \frontmatter |
---|
62 | |
---|
63 | %% ToC i.e. Table of Contents |
---|
64 | \dominitoc |
---|
65 | \tableofcontents |
---|
66 | |
---|
67 | |
---|
68 | %% Mainmatter |
---|
69 | %% ============================================================================== |
---|
70 | |
---|
71 | \mainmatter |
---|
72 | |
---|
73 | \graphicspath{{../../figures/SI3/}} |
---|
74 | |
---|
75 | \subfile{../subfiles/todolist} |
---|
76 | |
---|
77 | %% Abstract - Foreword |
---|
78 | |
---|
79 | \subfile{../subfiles/abstract_foreword} |
---|
80 | |
---|
81 | % Introduction |
---|
82 | |
---|
83 | \subfile{../subfiles/introduction} |
---|
84 | |
---|
85 | % Chapters |
---|
86 | |
---|
87 | \subfile{../subfiles/chap_model_basics} |
---|
88 | |
---|
89 | \subfile{../subfiles/chap_domain} |
---|
90 | |
---|
91 | \subfile{../subfiles/chap_dynamics} |
---|
92 | |
---|
93 | \subfile{../subfiles/chap_transport} |
---|
94 | |
---|
95 | \subfile{../subfiles/chap_ridging_rafting} |
---|
96 | |
---|
97 | \subfile{../subfiles/chap_radiative_transfer} |
---|
98 | |
---|
99 | \subfile{../subfiles/chap_thermo} |
---|
100 | |
---|
101 | \subfile{../subfiles/chap_interfaces} |
---|
102 | |
---|
103 | \subfile{../subfiles/chap_output_diagnostics} |
---|
104 | |
---|
105 | \subfile{../subfiles/chap_single_category_use} |
---|
106 | |
---|
107 | \subfile{../subfiles/chap_bdy_agrif} |
---|
108 | |
---|
109 | \subfile{../subfiles/chap_miscellaneous} |
---|
110 | |
---|
111 | %% Appendix |
---|
112 | |
---|
113 | %\appendix |
---|
114 | %% Backmatter |
---|
115 | %% ============================================================================== |
---|
116 | |
---|
117 | \backmatter |
---|
118 | |
---|
119 | %% Bibliography |
---|
120 | \cleardoublepage |
---|
121 | \phantomsection |
---|
122 | \addcontentsline{toc}{chapter}{Bibliography} |
---|
123 | \bibliography{../main/SI3_manual} |
---|
124 | %\bibliography{/Users/ioulianikolskaia/Boulot/LIBRARY/BIBTEX/Martin_biblio.bib} |
---|
125 | |
---|
126 | %% Index |
---|
127 | \cleardoublepage |
---|
128 | \phantomsection |
---|
129 | \addcontentsline{toc}{chapter}{Index} |
---|
130 | \printindex |
---|
131 | |
---|
132 | \end{document} |
---|