1 | %% ============================================================================== |
---|
2 | %% NEMO_book.tex: build the NEMO Reference Manual |
---|
3 | %% ============================================================================== |
---|
4 | |
---|
5 | |
---|
6 | %% Run build_NEMO_manual.sh to generate the PDF version (with pdflatex) |
---|
7 | |
---|
8 | |
---|
9 | %% Preamble |
---|
10 | %% ============================================================================== |
---|
11 | |
---|
12 | \include{texfiles/preamble} |
---|
13 | |
---|
14 | \begin{document} |
---|
15 | |
---|
16 | |
---|
17 | %% 'minted' env. & shortcuts for syntax highlighting |
---|
18 | |
---|
19 | \setminted[fortran]{fontsize=\tiny, breaklines} |
---|
20 | \newminted{fortran}{} % \begin{fortrancode} |
---|
21 | \newmintinline{fortran}{} % \fortraninline |
---|
22 | \newmintedfile{fortran}{} % \fortranfile |
---|
23 | \newminted{xml}{fontsize=\tiny, breaklines} |
---|
24 | \newminted{sh}{} |
---|
25 | \newminted{c}{} |
---|
26 | |
---|
27 | |
---|
28 | %% Frontmatter |
---|
29 | %% ============================================================================== |
---|
30 | |
---|
31 | \include{texfiles/top_matter} |
---|
32 | |
---|
33 | |
---|
34 | %% Frontpage |
---|
35 | |
---|
36 | \maketitle |
---|
37 | \frontmatter |
---|
38 | |
---|
39 | |
---|
40 | %% ToC i.e. Table of Contents |
---|
41 | |
---|
42 | \dominitoc |
---|
43 | \tableofcontents |
---|
44 | |
---|
45 | |
---|
46 | %% Mainmatter |
---|
47 | %% ============================================================================== |
---|
48 | |
---|
49 | \mainmatter |
---|
50 | |
---|
51 | |
---|
52 | %% Abstract - Foreword |
---|
53 | |
---|
54 | \subfile{texfiles/chapters/abstract_foreword} |
---|
55 | |
---|
56 | |
---|
57 | % Introduction |
---|
58 | |
---|
59 | \subfile{texfiles/chapters/introduction} |
---|
60 | |
---|
61 | |
---|
62 | % Chapters |
---|
63 | |
---|
64 | \subfile{texfiles/chapters/chap_model_basics} |
---|
65 | |
---|
66 | \subfile{texfiles/chapters/chap_step} % Time discretisation (time stepping strategy) |
---|
67 | |
---|
68 | \subfile{texfiles/chapters/chap_DOM} % Space discretisation |
---|
69 | |
---|
70 | \subfile{texfiles/chapters/chap_TRA} % Tracer advection/diffusion equation |
---|
71 | |
---|
72 | \subfile{texfiles/chapters/chap_DYN} % Dynamics : momentum equation |
---|
73 | |
---|
74 | \subfile{texfiles/chapters/chap_SBC} % Surface Boundary Conditions |
---|
75 | |
---|
76 | \subfile{texfiles/chapters/chap_LBC} % Lateral Boundary Conditions |
---|
77 | |
---|
78 | \subfile{texfiles/chapters/chap_LDF} % Lateral diffusion |
---|
79 | |
---|
80 | \subfile{texfiles/chapters/chap_ZDF} % Vertical diffusion |
---|
81 | |
---|
82 | \subfile{texfiles/chapters/chap_DIA} % Outputs and Diagnostics |
---|
83 | |
---|
84 | \subfile{texfiles/chapters/chap_OBS} % Observation operator |
---|
85 | |
---|
86 | \subfile{texfiles/chapters/chap_ASM} % Assimilation increments |
---|
87 | |
---|
88 | \subfile{texfiles/chapters/chap_STO} % Stochastic param. |
---|
89 | |
---|
90 | \subfile{texfiles/chapters/chap_misc} % Miscellaneous topics |
---|
91 | |
---|
92 | \subfile{texfiles/chapters/chap_CONFIG} % Predefined configurations |
---|
93 | |
---|
94 | |
---|
95 | % Appendix |
---|
96 | |
---|
97 | \appendix |
---|
98 | |
---|
99 | \subfile{texfiles/chapters/annex_A} % Generalised vertical coordinate |
---|
100 | |
---|
101 | \subfile{texfiles/chapters/annex_B} % Diffusive operator |
---|
102 | |
---|
103 | \subfile{texfiles/chapters/annex_C} % Discrete invariants of the eqs. |
---|
104 | |
---|
105 | \subfile{texfiles/chapters/annex_iso} % Isoneutral diffusion using triads |
---|
106 | |
---|
107 | \subfile{texfiles/chapters/annex_D} % Coding rules |
---|
108 | |
---|
109 | %% Not included |
---|
110 | %\subfile{texfiles/chapters/chap_conservation} % |
---|
111 | %\subfile{texfiles/chapters/annex_E} % Notes on some on going staff |
---|
112 | %\subfile{texfiles/chapters/annex_Fox-Kemper} % Notes on Fox-Kemper |
---|
113 | %\subfile{texfiles/chapters/annex_EVP} % Notes on EVP |
---|
114 | |
---|
115 | |
---|
116 | %% Backmatter |
---|
117 | %% ============================================================================== |
---|
118 | |
---|
119 | \backmatter |
---|
120 | |
---|
121 | |
---|
122 | %% Index |
---|
123 | |
---|
124 | %\addcontentsline{toc}{chapter}{Index} |
---|
125 | \printindex |
---|
126 | |
---|
127 | |
---|
128 | %% Bibliography |
---|
129 | |
---|
130 | \bibliography{texfiles/bibliography/NEMO_manual} |
---|
131 | |
---|
132 | |
---|
133 | \end{document} |
---|