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 NEMO/branches/2018/dev_r10164_HPC09_ESIWACE_PREP_MERGE/doc/latex/NEMO/main – NEMO

source: NEMO/branches/2018/dev_r10164_HPC09_ESIWACE_PREP_MERGE/doc/latex/NEMO/main/NEMO_manual.tex @ 10419

Last change on this file since 10419 was 10419, checked in by smasson, 5 years ago

dev_r10164_HPC09_ESIWACE_PREP_MERGE: merge with trunk@10418, see #2133

File size: 4.0 KB
Line 
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%% Document layout
9%% ==============================================================================
10
11\documentclass[a4paper, 11pt]{book}
12
13
14%% Preamble
15%% ==============================================================================
16
17%% Custom style
18\usepackage{../main/NEMO_manual}
19\usepackage{../main/NEMO_minted}
20
21\makeindex
22
23
24%%
25%% ==============================================================================
26
27%% Trick to include biblio in subfile compilation
28\newcommand{\biblio}{
29  \bibliographystyle{../main/ametsoc}
30  \bibliography{../main/NEMO_manual}
31}
32
33\begin{document}
34
35%% Trick to include biblio in subfile compilation
36\def\biblio{}
37
38
39%% Frontmatter
40%% ==============================================================================
41
42%% Frontpage
43
44\title{
45%\vspace{-6.0cm}\includegraphics[width=1.1\textwidth]{logo_ALL}            \\
46%\vspace{ 5.1cm}\includegraphics[width=0.9\textwidth]{NEMO_logo_Black}  \\
47\vspace{ 1.4cm}\rule{345pt}{1.5pt}                                      \\
48\vspace{0.45cm}{\Huge NEMO ocean engine}                                \\
49\rule{345pt}{1.5pt}
50}
51
52\author{
53\Large Gurvan Madec, and the NEMO team                                                          \\
54\texttt{\small\href{mailto:gurvan.madec@locean-ipsl.umpc.fr}{gurvan.madec@locean-ipsl.umpc.fr}} \\
55}
56
57\date{
58Decembre 2017                                                                                \\
59{\small  -- version 4.0 alpha --}                                                            \\
60~                                                                                            \\
61\textit{\small Note du P\^ole de mod\'{e}lisation de l'Institut Pierre-Simon Laplace No 27 } \\
62\vspace{0.45cm}{ ISSN No 1288-1619.}
63}
64%\date{\today}
65
66\maketitle
67\frontmatter
68
69
70%% ToC i.e. Table of Contents
71
72\dominitoc
73\tableofcontents
74
75
76%% Mainmatter
77%% ==============================================================================
78
79\mainmatter
80
81
82%% Foreword
83
84\subfile{../subfiles/foreword}
85
86
87% Introduction
88
89\subfile{../subfiles/introduction}
90
91
92% Chapters
93
94\subfile{../subfiles/chap_model_basics}
95
96\subfile{../subfiles/chap_time_domain}   % Time discretisation (time stepping strategy)
97
98\subfile{../subfiles/chap_DOM}           % Space discretisation
99
100\subfile{../subfiles/chap_TRA}           % Tracer advection/diffusion equation
101
102\subfile{../subfiles/chap_DYN}           % Dynamics : momentum equation
103
104\subfile{../subfiles/chap_SBC}           % Surface Boundary Conditions
105
106\subfile{../subfiles/chap_LBC}           % Lateral Boundary Conditions
107
108\subfile{../subfiles/chap_LDF}           % Lateral diffusion
109
110\subfile{../subfiles/chap_ZDF}           % Vertical diffusion
111
112\subfile{../subfiles/chap_DIA}           % Outputs and Diagnostics
113
114\subfile{../subfiles/chap_OBS}           % Observation operator
115
116\subfile{../subfiles/chap_ASM}           % Assimilation increments
117
118\subfile{../subfiles/chap_STO}           % Stochastic param.
119
120\subfile{../subfiles/chap_misc}          % Miscellaneous topics
121
122\subfile{../subfiles/chap_CONFIG}        % Predefined configurations
123
124
125%% Appendix
126
127\appendix
128
129\subfile{../subfiles/annex_A}             % Generalised vertical coordinate
130
131\subfile{../subfiles/annex_B}             % Diffusive operator
132
133\subfile{../subfiles/annex_C}             % Discrete invariants of the eqs.
134
135\subfile{../subfiles/annex_iso}           % Isoneutral diffusion using triads
136
137\subfile{../subfiles/annex_D}             % Coding rules
138
139%% Not included
140%\subfile{../subfiles/chap_conservation}  %
141%\subfile{../subfiles/annex_E}            % Notes on some on going staff
142%\subfile{../subfiles/annex_Fox-Kemper}   % Notes on Fox-Kemper
143%\subfile{../subfiles/annex_EVP}          % Notes on EVP
144
145
146%% Backmatter
147%% ==============================================================================
148
149\backmatter
150
151
152%% Bibliography
153
154\cleardoublepage
155\phantomsection
156\addcontentsline{toc}{chapter}{Bibliography}
157\bibliography{../main/NEMO_manual}
158
159
160%% Index
161
162\cleardoublepage
163\phantomsection
164\addcontentsline{toc}{chapter}{Index}
165\printindex
166
167
168\end{document}
Note: See TracBrowser for help on using the repository browser.