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

Last change on this file since 10509 was 10509, checked in by andmirek, 5 years ago

ticket #2204 into the trunk

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