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 @ 9389

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

Starting to use minted macros to highlight namelists parameters: \textit -> \forcode
Work in progress as all escape characters (\) have to be removed in namelist parameter ids
Then several \np macros along with their paramater values with will be replaced by \forcode{np = value} apart from section headings for indexing
Fixes: style issue by reordering preamble section, removing \np macros inside equations and editing path to NEMO_manual.tex for subfiles.

File size: 3.6 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%% Index
143
144%\addcontentsline{toc}{chapter}{Index}
145\printindex
146
147
148%% Bibliography
149
150\bibliography{../tex_main/NEMO_manual}
151
152
153\end{document}
Note: See TracBrowser for help on using the repository browser.