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

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

Add explicit option for latexmk to ensure PDF export

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