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/trunk/doc/latex/NEMO/main – NEMO

source: NEMO/trunk/doc/latex/NEMO/main/NEMO_manual.tex @ 11007

Last change on this file since 11007 was 11007, checked in by nicolasmartin, 5 years ago

Edit NEMO_manual LaTeX files to comply with previous path modification

File size: 3.8 KB
Line 
1%% ==============================================================================
2%% NEMO Reference Manual
3%% ==============================================================================
4
5
6%% Run ./PDF_creation.sh to generate the manual with latexmk
7
8
9%% Preamble
10%% ==============================================================================
11
12%% Document layout
13\documentclass{book}
14
15%% Custom style (.sty)
16\usepackage{../main/NEMO_manual}
17
18%% Include references and index for single subfile compilation
19\newcommand{\biblio}{\bibliography{../main/NEMO_manual}}
20\newcommand{\pindex}{\printindex}
21
22\makeindex
23
24%% End of common preamble between main and sub-files
25\begin{document}
26
27%% Override custom cmds for full manual compilation
28\renewcommand{\biblio}{}
29\renewcommand{\pindex}{}
30
31
32%% Frontmatter
33%% ==============================================================================
34
35\graphicspath{{../../figures/logos/}}
36
37%% Frontpage
38\title{
39  \includegraphics[height=0.05\textheight]{CMCC}\hfill
40  \includegraphics[height=0.05\textheight]{CNRS}\hfill
41  \includegraphics[height=0.05\textheight]{MOI} \hfill
42  \includegraphics[height=0.05\textheight]{UKMO}\hfill
43  \includegraphics[height=0.05\textheight]{NERC}       \\
44  \includegraphics[ width=0.8\textwidth  ]{NEMO_grey}  \\
45  {\Huge NEMO ocean engine}                                     \\
46}
47\author{
48  \Large Gurvan Madec and NEMO System Team
49%  \thanks{
50%
51%  }                                                        \\
52%                                                           \\
53  \textit{Issue 27, Notes du P\^{o}le de mod\'{e}lisation} \\
54  \textit{Institut Pierre-Simon Laplace (IPSL)}            \\
55  \textit{ISSN 1288-1619}
56}
57\date{\today}
58
59\maketitle
60\frontmatter
61
62
63%% ToC i.e. Table of Contents
64\dominitoc
65\tableofcontents
66
67
68%% Mainmatter
69%% ==============================================================================
70
71\mainmatter
72
73\graphicspath{{../../figures/NEMO/}}
74
75%% Foreword
76\subfile{../subfiles/foreword}
77
78%% Introduction
79\subfile{../subfiles/introduction}
80
81%% Chapters
82\subfile{../subfiles/chap_model_basics}
83\subfile{../subfiles/chap_time_domain}   % Time discretisation (time stepping strategy)
84\subfile{../subfiles/chap_DOM}           % Space discretisation
85\subfile{../subfiles/chap_TRA}           % Tracer advection/diffusion equation
86\subfile{../subfiles/chap_DYN}           % Dynamics : momentum equation
87\subfile{../subfiles/chap_SBC}           % Surface Boundary Conditions
88\subfile{../subfiles/chap_LBC}           % Lateral Boundary Conditions
89\subfile{../subfiles/chap_LDF}           % Lateral diffusion
90\subfile{../subfiles/chap_ZDF}           % Vertical diffusion
91\subfile{../subfiles/chap_DIA}           % Outputs and Diagnostics
92\subfile{../subfiles/chap_OBS}           % Observation operator
93\subfile{../subfiles/chap_ASM}           % Assimilation increments
94\subfile{../subfiles/chap_STO}           % Stochastic param.
95\subfile{../subfiles/chap_misc}          % Miscellaneous topics
96\subfile{../subfiles/chap_CONFIG}        % Predefined configurations
97
98%% Appendix
99\appendix
100\subfile{../subfiles/annex_A}             % Generalised vertical coordinate
101\subfile{../subfiles/annex_B}             % Diffusive operator
102\subfile{../subfiles/annex_C}             % Discrete invariants of the eqs.
103\subfile{../subfiles/annex_iso}           % Isoneutral diffusion using triads
104\subfile{../subfiles/annex_D}             % Coding rules
105
106%% Not included
107%\subfile{../subfiles/chap_conservation}  %
108%\subfile{../subfiles/annex_E}            % Notes on some on going staff
109
110
111%% Backmatter
112%% ==============================================================================
113
114\backmatter
115
116%% Bibliography
117\cleardoublepage
118\phantomsection
119\addcontentsline{toc}{chapter}{Bibliography}
120\bibliography{../main/NEMO_manual}
121
122%% Index
123\cleardoublepage
124\phantomsection
125\addcontentsline{toc}{chapter}{Index}
126\printindex
127
128
129\end{document}
Note: See TracBrowser for help on using the repository browser.