New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
NEMO_manual.tex in branches/2017/dev_merge_2017/DOC – NEMO

source: branches/2017/dev_merge_2017/DOC/NEMO_manual.tex @ 9373

Last change on this file since 9373 was 9373, checked in by nicolasmartin, 6 years ago

Global reorganisation of DOC directory: files/folders renaming

File size: 3.7 KB
Line 
1%description: Book template
2
3% template of document for LaTeX
4% (C) Xavier Perseguers 2002 - xavier.perseguers@epfl.ch
5
6% ================================================================
7% PREAMBLE
8% ================================================================
9
10\include{texfiles/preamble}
11
12% ================================================================
13% TOP MATTER
14% ================================================================
15
16\include{texfiles/top_matter}
17
18% ================================================================
19% DOCUMENT
20% ================================================================
21
22\begin{document}
23
24\maketitle                 % generate the title
25
26\frontmatter
27
28\tableofcontents              % generate a table of contents
29%\listoffigures               % generate a list  of figures
30%\listoftables                     % generate a list of tables
31
32\mainmatter
33
34% ================================================================
35% Abstract - Foreword
36% ================================================================
37
38\subfile{texfiles/chapters/abstract_foreword}
39
40% ================================================================
41% INTRODUCTION
42% ================================================================
43
44\subfile{texfiles/chapters/introduction}
45
46% ================================================================
47% CHAPTERS
48% ================================================================
49
50\subfile{texfiles/chapters/chap_model_basics}
51
52\subfile{texfiles/chapters/chap_step}           % Time discretisation (time stepping strategy)
53
54\subfile{texfiles/chapters/chap_DOM}            % Space discretisation
55
56\subfile{texfiles/chapters/chap_TRA}            % Tracer advection/diffusion equation
57
58\subfile{texfiles/chapters/chap_DYN}            % Dynamics : momentum equation
59
60\subfile{texfiles/chapters/chap_SBC}            % Surface Boundary Conditions
61
62\subfile{texfiles/chapters/chap_LBC}            % Lateral Boundary Conditions
63
64\subfile{texfiles/chapters/chap_LDF}            % Lateral diffusion
65
66\subfile{texfiles/chapters/chap_ZDF}            % Vertical diffusion
67
68\subfile{texfiles/chapters/chap_DIA}            % Outputs and Diagnostics
69
70\subfile{texfiles/chapters/chap_OBS}            % Observation operator
71
72\subfile{texfiles/chapters/chap_ASM}            % Assimilation increments
73
74\subfile{texfiles/chapters/chap_STO}            % Stochastic param.
75
76\subfile{texfiles/chapters/chap_misc}           % Miscellaneous topics
77
78\subfile{texfiles/chapters/chap_CONFIG}         % Predefined configurations
79
80% ================================================================
81% APPENDIX
82% ================================================================
83
84\appendix
85
86%\subfile{texfiles/chapters/chap_conservation}
87\subfile{texfiles/chapters/annex_A}       % generalised vertical coordinate
88\subfile{texfiles/chapters/annex_B}       % diffusive operator
89\subfile{texfiles/chapters/annex_C}       % Discrete invariants of the eqs.
90\subfile{texfiles/chapters/annex_iso}                    % Isoneutral diffusion using triads
91\subfile{texfiles/chapters/annex_D}       % Coding rules
92%\subfile{texfiles/chapters/annex_E}                     % Notes on some on going staff (no included in the DOC)
93%\subfile{texfiles/chapters/annex_Fox-Kemper}   % Notes on Fox-Kemper (no included in the DOC)
94%\subfile{texfiles/chapters/annex_EVP}          % Notes on EVP (no included in the DOC)
95
96% ================================================================
97% INDEX
98% ================================================================
99
100\addcontentsline{toc}{chapter}{Index}
101\printindex
102
103% ================================================================
104% BIBLIOGRAPHY
105% ================================================================
106
107%%\bibliographystyle{plainat}
108\bibliographystyle{texfiles/styles/ametsoc}     % AMS biblio style (JPO)
109\bibliography{texfiles/bibliography/NEMO_manual}
110
111% ================================================================
112\end{document}
Note: See TracBrowser for help on using the repository browser.