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/tex_main – NEMO

source: branches/2017/dev_merge_2017/DOC/tex_main/NEMO_manual.tex @ 9394

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

Fix several typos, reverse (biblio then index) and shrink the manual backmatter (columns, font size, separator height) #1793

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