Changeset 11515
- Timestamp:
- 2019-09-09T16:07:20+02:00 (5 years ago)
- Location:
- NEMO/trunk/doc/latex/global
- Files:
-
- 1 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/doc/latex/global/ametsoc.bst
r11128 r11515 9 9 %% *** Bibliography style file for ALL AMS Journals...version 1.0 *** 10 10 %% *** Brian Papa - American Meteorological Society *** 11 %% 11 %% 12 12 %% Copyright 1994-2004 Patrick W Daly 13 13 % =============================================================== … … 519 519 duplicate$ empty$ 'skip$ 520 520 { 521 "\href{http://dx.doi.org/" swap$ * "}{ DOI}" *521 "\href{http://dx.doi.org/" swap$ * "}{\aiDoi}" * 522 522 } 523 523 if$ … … 1192 1192 crossref missing$ 1193 1193 { format.in.ed.booktitle "booktitle" output.check 1194 format.publisher.address output 1194 format.publisher.address output 1195 1195 format.bvolume output 1196 1196 format.number.series output -
NEMO/trunk/doc/latex/global/coding_rules.tex
r11433 r11515 3 3 \label{apdx:coding} 4 4 5 \ minitoc5 \chaptertoc 6 6 7 7 \newpage … … 13 13 produces fewer bugs and is easier to maintain. 14 14 Therefore, it is essential that the model development follows some rules: 15 15 16 \begin{itemize} 16 17 18 19 20 21 17 \item well planned and designed 18 \item well written 19 \item well documented (both on- and off-line) 20 \item maintainable 21 \item easily portable 22 \item flexible. 22 23 \end{itemize} 23 24 24 25 To satisfy part of these aims, \NEMO is written with a coding standard which is close to the ECMWF rules, 25 named DOCTOR \citep{gibson_rpt86}. 26 named DOCTOR \citep{gibson_rpt86}. 26 27 These rules present some advantages like: 28 27 29 \begin{itemize} 28 \item to provide a well presented program 29 \item to use rules for variable names which allow recognition of their type 30 (integer, real, parameter, local or shared variables, etc. ). 30 \item to provide a well presented program 31 \item to use rules for variable names which allow recognition of their type (integer, real, parameter, local or shared variables, etc. ). 31 32 \end{itemize} 32 33 … … 45 46 46 47 This work is based on the coding conventions in use for the Community Climate System Model 47 \footnote {\href{http://www.cesm.ucar.edu/working_groups/Software/dev_guide/dev_guide/node7.html}{UCAR conventions}}, 48 \footnote {\href{http://www.cesm.ucar.edu/working_groups/Software/dev_guide/dev_guide/node7.html}{UCAR conventions}}, 48 49 the previous version of this document (``FORTRAN coding standard in the OPA System'') and 49 50 the expertise of the \NEMO System Team. … … 51 52 52 53 \begin{itemize} 53 54 55 54 \item The style rules, $i.e.$ the syntax, appearance and naming conventions chosen to improve readability of the code; 55 \item The content rules, $i.e.$ the conventions to improve the reliability of the different parts of the code; 56 \item The package rules to go a step further by improving the reliability of the whole and 56 57 interfaces between routines and modules. 57 58 \end{itemize} … … 79 80 80 81 \begin{itemize} 81 82 83 84 \item \path{OBC}, \path{BDY} management of structured and unstructured open boundaries 85 86 87 82 \item \path{SBC} surface module 83 \item \path{IOM} management of the I/O 84 \item \path{NST} interface to AGRIF (nesting model) for dynamics and biogeochemistry 85 \item \path{OBC}, \path{BDY} management of structured and unstructured open boundaries 86 \item \path{C1D} 1D (vertical) configuration for dynamics, sea-ice and biogeochemistry 87 \item \path{OFF} off-line module: passive tracer or biogeochemistry alone 88 \item \path{...} 88 89 \end{itemize} 89 90 … … 292 293 complex \\ 293 294 \hline 294 public \par or \par module variable & 295 \textbf{m n} \par \textit{but not} \par \textbf{nn\_} & 295 public \par or \par module variable & 296 \textbf{m n} \par \textit{but not} \par \textbf{nn\_} & 296 297 \textbf{a b e f g h o} \textbf{q} \textit{to} \textbf{x} \par but not \par \textbf{fs rn\_} & 297 298 \textbf{l} \par \textit{but not} \par \textbf{lp ld ll ln\_} & … … 301 302 \hline 302 303 dummy \par argument & 303 \textbf{k} \par \textit{but not} \par \textbf{kf} & 304 \textbf{p} \par \textit{but not} \par \textbf{pp pf} & 304 \textbf{k} \par \textit{but not} \par \textbf{kf} & 305 \textbf{p} \par \textit{but not} \par \textbf{pp pf} & 305 306 \textbf{ld} & 306 307 \textbf{cd} & … … 309 310 \hline 310 311 local \par variable & 311 \textbf{i} & 312 \textbf{i} & 312 313 \textbf{z} & 313 314 \textbf{ll} & … … 333 334 \hline 334 335 namelist & 335 \textbf{nn\_} & 336 \textbf{nn\_} & 336 337 \textbf{rn\_} & 337 338 \textbf{ln\_} & … … 748 749 Below is a list of features to avoid: 749 750 \begin{itemize} 750 \item 751 \forcode{COMMON} block 751 \item \forcode{COMMON} block 752 752 (use the declaration part of \forcode{MODULE} instead) 753 \item 754 \forcode{EQUIVALENCE} 753 \item \forcode{EQUIVALENCE} 755 754 (use \forcode{POINTER} or derived data type instead to form data structure) 756 \item 757 Assigned and computed \forcode{GOTO} 755 \item Assigned and computed \forcode{GOTO} 758 756 (use the \forcode{CASE} construct instead) 759 \item 760 Arithmetic \forcode{IF} statement 757 \item Arithmetic \forcode{IF} statement 761 758 (use the block \forcode{IF}, \forcode{ELSE}, \forcode{ELSEIF}, \forcode{ENDIF} or 762 759 \forcode{SELECT CASE} construct instead) 763 \item 764 Labelled \forcode{DO} construct 760 \item Labelled \forcode{DO} construct 765 761 (use unlabelled \forcode{END DO} instead) 766 \item 767 \forcode{FORMAT} statement 762 \item \forcode{FORMAT} statement 768 763 (use character parameters or 769 764 explicit format- specifiers inside the \forcode{READ} or \forcode{WRITE} statement instead) 770 \item 771 \forcode{GOTO} and \forcode{CONTINUE} statements 765 \item \forcode{GOTO} and \forcode{CONTINUE} statements 772 766 (use \forcode{IF}, \forcode{CASE}, \forcode{DO WHILE}, \forcode{EXIT} or \forcode{CYCLE} statements or 773 767 a contained ?) 774 \item 775 \forcode{PAUSE} 776 \item 777 \forcode{ENTRY} statement: a sub-program must only have one entry point. 778 \item 779 \forcode{RETURN} is obsolete and so not necessary at the end of program units 780 \item 781 \forcode{FUNCTION} statement 782 \item 783 Avoid functions with side effects. 768 \item \forcode{PAUSE} 769 \item \forcode{ENTRY} statement: a sub-program must only have one entry point. 770 \item \forcode{RETURN} is obsolete and so not necessary at the end of program units 771 \item \forcode{FUNCTION} statement 772 \item Avoid functions with side effects. 784 773 \footnote{ 785 774 First, the code is easier to understand, if you can rely on … … 790 779 This is especially important on massive parallel and as well on vector machines. 791 780 } 792 \item 793 \forcode{DATA} and \forcode{BLOCK DATA} 781 \item \forcode{DATA} and \forcode{BLOCK DATA} 794 782 (use initialisers) 795 783 \end{itemize} 796 784 785 %% Imported from introduction 786 %%gm To be put somewhere else .... 787 %%nm We should consider creating a glossary for all this kind of stuff (terms, acronyms and symbols) 788 %% http://en.wikibooks.org/wiki/LaTeX/Glossary 789 %\noindent CPP keys and namelists are used as inputs to the code. 790 791 %\noindent \index{CPP keys} CPP keys 792 793 %Some CPP keys are implemented in the \fortran code to allow code selection at compiling step. 794 %This selection of code at compilation time reduces the reliability of the whole platform since 795 %it changes the code from one set of CPP keys to the other. 796 %It is used only when the addition/suppression of the part of code highly changes the amount of memory at run time. 797 %Usual coding looks like: 798 799 %\begin{forlines} 800 %#if defined key_option1 801 % ! This part of the \fortran code will be active 802 % ! only if key_option1 is activated at compiling step 803 %#endif 804 %\end{forlines} 805 806 %\noindent \index{Namelist} Namelists 807 808 %The namelist allows to input variables (character, logical, real and integer) into the code. 809 %There is one namelist file for each component of \NEMO\ (dynamics, sea-ice, biogeochemistry...) 810 %containing all the \fortran namelists needed. 811 %The implementation in \NEMO\ uses a 2-step process. 812 %For each \fortran namelist, two files are read: 813 814 %\begin{enumerate} 815 %\item 816 % A reference namelist (in \path{./cfgs/SHARED/namelist_ref}) is read first. 817 % This file contains all the namelist variables which are initialised to default values 818 %\item 819 % A configuration namelist (in \path{./cfgs/CFG_NAME/EXP00/namelist_cfg}) is read aferwards. 820 % This file contains only the namelist variables which are changed from default values, and overwrites those. 821 %\end{enumerate} 822 %A template can be found in \path{NEMO/OPA_SRC/module.example}. 823 %The effective namelist, taken in account during the run, is stored at execution time in 824 %an \texttt{output\_namelist\_dyn} (or \texttt{\_ice} or \texttt{\_top}) file. 825 %%gm end 826 827 %%nm: Add some words on the \NEMO\ dependencies 828 %The model is implemented in \fninety, with preprocessing (C pre-processor). 829 %It runs under UNIX. 830 %It is optimized for vector computers and parallelised by domain decomposition with MPI. 831 %All input and output is done in NetCDF (Network Common Data Format) with a optional direct access format for output. 832 %To ensure the clarity and readability of the code it is necessary to follow coding rules. 833 %The coding rules for OPA include conventions for naming variables, 834 %with different starting letters for different types of variables (real, integer, parameter\ldots). 835 %Those rules are briefly presented in \autoref{apdx:coding} and a more complete document is available . 836 837 %The model is organized with a high internal modularity based on physics. 838 %For example, each trend (\ie, a term in the RHS of the prognostic equation) for momentum and tracers 839 %is computed in a dedicated module. 840 %To make it easier for the user to find his way around the code, the module names follow a three-letter rule. 841 %For example, \mdl{traldf} is a module related to the TRAcers equation, computing the Lateral DiFfussion. 842 %The complete list of module names is presented in \autoref{apdx:coding}. %====>>>> to be done ! 843 %Furthermore, modules are organized in a few directories that correspond to their category, 844 %as indicated by the first three letters of their name (\autoref{tab:chapters}). -
NEMO/trunk/doc/latex/global/document.tex
r11433 r11515 1 1 2 %% ============================================================================== 3 %% Template structure for reference manual 4 %% ============================================================================== 2 %% ================================================================================================= 3 %% Template structure for reference manuals 4 %% ================================================================================================= 5 5 6 6 %% NEMO release version … … 8 8 9 9 %% Preamble 10 %% ============================================================================== 10 %% ================================================================================================= 11 11 12 12 %% Document layout 13 \documentclass[twoside = semi, abstract = on]{scrreprt} 13 \documentclass[fontsize = 10pt, 14 twoside = semi, abstract = on, 15 open = right]{scrreprt} 14 16 15 17 %% Load configurations 16 18 \input{../../global/preamble} 17 18 \dominitoc19 19 20 20 %% End of common preamble between main and sub-files … … 33 33 34 34 %% Frontmatter 35 %% ============================================================================== 35 %% ================================================================================================= 36 36 37 %% Disable page numbering temporarily 38 \pagenumbering{gobble} 37 \pagenumbering{gobble} %% Disable page numbering temporarily 39 38 40 39 %% Title page 41 %\input{../../global/frontpage} 42 \input{../../global/frontpage_new} 40 \input{../../global/frontpage} 43 41 44 % \maketitle45 %\emptythanks 42 %% Footer for introductory parts (no header by cleaning default) 43 \ofoot[]{\engine\ Reference Manual} \ifoot[]{\pagemark} 46 44 47 45 %% Information page (2nd page) 48 46 \input{../../global/info_page} 49 47 50 %% Headings for introductory parts (no header, simple footer) 51 \ofoot{\engine\ Reference Manual}\ifoot{\pagemark} 48 \clearpage 49 52 50 \pagenumbering{roman} 53 54 %% Foreword 55 %\input{foreword} 51 \input{introduction} 56 52 57 53 %% Table of Contents 58 54 \tableofcontents 59 %\listoffigures 60 %\listoftables 61 %\listoflistings 55 \listoffigures \listoftables \listoflistings 62 56 63 57 \clearpage … … 65 59 66 60 %% Mainmatter 67 %% ============================================================================== 61 %% ================================================================================================= 68 62 69 63 %% Headings for document body 70 \lohead{Chap.\ \thechapter\ \leftmark}\rehead{Sect.\ \thesection\ \rightmark}71 \ifoot{Page\ \pagemark\ of \pageref*{LastPage}}72 64 \pagenumbering{arabic} 65 \lohead{Chap.\ \thechapter\ \leftmark} \rehead{Sect.\ \thesection\ \rightmark} 66 \ifoot[]{Page\ \pagemark\ of \pageref*{LastPage}} 73 67 74 68 \include{chapters} … … 76 70 77 71 %% Appendix 78 %% ============================================================================== 72 %% ================================================================================================= 79 73 80 %% Chapter numbering is reset with letters now 81 \appendix 82 74 \appendix %% Chapter numbering with letters by now 83 75 \include{appendices} 84 76 … … 88 80 89 81 %% Backmatter 90 %% ============================================================================== 91 92 %\backmatter %% Chapter numbering off 82 %% ================================================================================================= 93 83 94 84 %% Bibliography 95 85 \phantomsection 96 86 \addcontentsline{toc}{chapter}{Bibliography} 87 \lohead{Bibliography} \rehead{Bibliography} 97 88 \bibliography{../main/bibliography} 98 89 99 %% Index100 90 \clearpage 91 92 %% Indexes 101 93 \phantomsection 102 94 \addcontentsline{toc}{chapter}{Indexes} 95 \lohead{Indexes} \rehead{Indexes} 103 96 \printindex[keys] 104 97 \printindex[modules] -
NEMO/trunk/doc/latex/global/frontpage.tex
r11433 r11515 1 1 2 \ title{\heading}3 \date{\today}4 \author{\protect\input{thanks}}2 \begin{titlepage} 3 \newgeometry{hmargin = 1.5cm, vmargin = 3cm} 4 \setlength{\parindent}{0pt} 5 5 6 \pretitle{7 6 \begin{center} 8 \begin{figure}[H] 9 \begin{minipage}[c]{0.35\textwidth} 10 \href{http://www.nemo-ocean.eu}{\includegraphics[width=0.7\textwidth]{logos/NEMO_grey}} 11 \end{minipage} 12 \hfill 13 \begin{minipage}[c]{0.65\textwidth} 14 \centering 15 \large{\em{{N}ucleus for {E}uropean {M}odelling of the {O}cean}} 16 \end{minipage} 17 \end{figure} 18 \vfill 19 \Huge 20 } 21 \posttitle{ 22 \par 7 \begin{minipage}{0.3\textwidth} 8 \includegraphics[height=1.5cm]{logos/NEMO_grey} 9 \end{minipage}\begin{minipage}{0.6\textwidth} 10 \begin{center} 11 \Large\slshape 12 \textbf{N}ucleus for \textbf{E}uropean \textbf{M}odelling of the \textbf{O}cean \\ 13 \medskip 14 \hyperref[resources]{\textcolor{black}{ 15 \faWordpress \hspace{0.75cm} \faCodeFork \hspace{0.75cm} 16 \faGithub \hspace{0.75cm} \faCloudDownload \hspace{0.75cm} \faEnvelope 17 } 18 } 19 \end{center} 20 \end{minipage} 23 21 \end{center} 24 \vskip 0.5em 25 } 26 \predate{ 22 23 \spacetop 24 \textcolor{white}{\fontsize{0.8cm}{0.8cm}\selectfont\textbf{\heading}} 25 \ifdef{\subheading}{ 26 \medskip 27 \par 28 \textcolor{white}{\Huge \subheading} 29 }{} 30 \spacedown 31 32 \begin{center} 33 \LARGE Version \version\ -\ \today \\ 34 \medskip 35 \href{http://doi.org/10.5281/zenodo.\zid}{ \includegraphics{{badges/zenodo.\zid}.pdf} } 36 \end{center} 37 27 38 \vfill 28 \begin{center} 29 \large Version \version --- 30 } 31 \postdate{ 32 \par~\\ 33 \href{http://doi.org/10.5281/zenodo.\zid}{\includegraphics{{badges/zenodo.\zid}.pdf}} 34 \end{center} 39 40 \begin{minipage}{\authorswidth} 41 \raggedleft 42 \input{thanks} 43 \end{minipage}\hspace{15pt}\begin{minipage}{0.02\linewidth} 44 \rule{1pt}{\rulelenght} 45 \end{minipage}\hspace{ 5pt}\begin{minipage}{\abstractwidth} 46 \begin{abstract} 47 \input{foreword} 48 \end{abstract} 49 \end{minipage} 50 35 51 \vfill 36 \begin{center}37 \href{http://www.cmcc.it}{ \includegraphics[height=0.055\textheight]{logos/CMCC}}38 \hspace{0.5em}39 \href{http://www.cnrs.fr}{ \includegraphics[height=0.055\textheight]{logos/CNRS}}40 \hspace{0.9em}41 \href{http://www.mercator-ocean.fr}{\includegraphics[height=0.055\textheight]{logos/MOI} }42 \hspace{0.45em}43 \href{http://www.metoffice.gov.uk}{ \includegraphics[height=0.055\textheight]{logos/UKMO}}44 \hspace{0.5em}45 \href{http://nerc.ukri.org}{ \includegraphics[height=0.055\textheight]{logos/NERC}} \\46 \large{{\em{C}ommunity \hspace{1.5em} {O}cean \hspace{1.5em} {M}odel}}47 \end{center}48 }49 52 50 \preauthor{51 53 \begin{center} 52 54 \Large 53 \lineskip 0.5em 54 \begin{tabular}[t]{c c c} 55 } 56 \postauthor{ 57 \end{tabular} 58 \par 55 \href{http://www.cmcc.it }{ \includegraphics[height=1cm]{logos/CMCC} } \hspace{0.25cm} 56 \href{http://www.cnrs.fr }{ \includegraphics[height=1cm]{logos/CNRS} } \hspace{0.25cm} 57 \href{http://www.mercator-ocean.fr}{ \includegraphics[height=1cm]{logos/MOI} } \hspace{0.25cm} 58 \href{http://www.metoffice.gov.uk }{ \includegraphics[height=1cm]{logos/UKMO} } \hspace{0.25cm} 59 \href{http://nerc.ukri.org }{ \includegraphics[height=1cm]{logos/NERC} } \\ 60 \medskip 61 \slshape 62 {C}ommunity \hspace{1.5em} {O}cean \hspace{1.5em} {M}odel \\ 59 63 \end{center} 60 }61 64 62 \thanksmarkseries{fnsymbol} 65 \end{titlepage} 66 67 \restoregeometry -
NEMO/trunk/doc/latex/global/highlighting.tex
r11310 r11515 7 7 \definecolor{bg}{HTML}{f8f8f8} 8 8 \usemintedstyle{emacs} 9 \setminted{bgcolor=bg, fontsize=\scriptsize, breaklines , frame=leftline}9 \setminted{bgcolor=bg, fontsize=\scriptsize, breaklines} 10 10 \setminted[xml]{style=borland} %% Specific per language 11 11 … … 25 25 26 26 %% Inline 27 \newmintinline[forcode]{fortran}{bgcolor=, fontsize=auto , frame=lines} % \forcode{...}28 \newmintinline[xmlcode]{xml}{ bgcolor=, fontsize=auto , frame=lines} % \xmlcode{...}29 \newmintinline[snippet]{console}{bgcolor=, fontsize=auto , frame=lines} % \snippet{...}27 \newmintinline[forcode]{fortran}{bgcolor=, fontsize=auto} % \forcode{...} 28 \newmintinline[xmlcode]{xml}{ bgcolor=, fontsize=auto} % \xmlcode{...} 29 \newmintinline[snippet]{console}{bgcolor=, fontsize=auto} % \snippet{...} 30 30 31 31 %% Namelists inclusion 32 32 \newcommand{\nlst}[1]{\forfile{../../../namelists/#1}} 33 -
NEMO/trunk/doc/latex/global/info_page.tex
r11433 r11515 2 2 \thispagestyle{plain} 3 3 4 % ================================================================5 % Disclaimer6 % ================================================================4 %% ================================================================ 5 %% Disclaimer 6 %% ================================================================ 7 7 \subsubsection*{Disclaimer} 8 8 … … 11 11 which is a French adaptation of the GNU GPL (\textbf{G}eneral \textbf{P}ublic \textbf{L}icense). 12 12 Anyone may use it freely for research purposes, and is encouraged to 13 communicate back to the \NEMO\team its own developments and improvements.13 communicate back to the development team its own developments and improvements. 14 14 15 15 The model and the present document have been made available as a service to the community. … … 18 18 Users are encouraged to bring them to our attention. 19 19 20 The authors assume no responsibility for problems, errors, or incorrect usage of NEMO.20 The authors assume no responsibility for problems, errors, or incorrect usage of \NEMO. 21 21 22 % ================================================================23 % External resources24 % ================================================================22 %% ================================================================ 23 %% External resources 24 %% ================================================================ 25 25 \subsubsection*{Other resources} 26 \label{resources} 26 27 27 28 Additional information can be found on: … … 44 45 \end{itemize} 45 46 46 % ================================================================47 % Citation48 % ================================================================47 %% ================================================================ 48 %% Citation 49 %% ================================================================ 49 50 \subsubsection*{Citation} 50 51 51 52 Reference for papers and other publications is as follows: 52 53 53 ``{\bfseries \heading}'', 54 %\firstauthor and \secondauthor, 55 {\em Scientific Notes of Climate Modelling Center}, \textbf{\ipslnum} --- ISSN 1288-1619, 56 Institut Pierre-Simon Laplace (IPSL), 57 \href{https://doi.org/10.5281/zenodo.\zid}{doi:10.5281/zenodo.\zid} 54 \medskip 55 56 \begin{sloppypar} 57 ``{\bfseries \heading}\ifdef{\subheading}{ -- \subheading}{}'', 58 {\em Scientific Notes of Climate Modelling Center}, \textbf{\ipslnum} --- ISSN 1288-1619, 59 Institut Pierre-Simon Laplace (IPSL), 60 \href{https://doi.org/10.5281/zenodo.\zid}{doi:10.5281/zenodo.\zid} 61 \end{sloppypar} 58 62 59 63 \begin{figure}[b] … … 71 75 \end{minipage} 72 76 \end{figure} 73 74 \end{document} -
NEMO/trunk/doc/latex/global/new_cmds.tex
r11433 r11515 3 3 4 4 %% Include references and index for compilation of single subfile 5 \newcommand{\mtoc}{\minitoc}5 %\newcommand{\mtoc}{\minitoc} 6 6 \newcommand{\biblio}{ \bibliography{../main/bibliography} } 7 7 \newcommand{\pindex}{\printindex} 8 8 9 %% NEMO and Fortran in small capitals 10 \newcommand{\NEMO }{\textsc{nemo}} 11 \newcommand{\SIcube }{\textsc{si$^3$}} 12 \newcommand{\TOP }{\textsc{top}} 9 %% Same slanted font for NEMO and its core engines 10 \newcommand{\NEMO }{\textsl{NEMO}} 11 \newcommand{\OPA }{\textsl{OPA}} 12 \newcommand{\SIcube}{\textsl{SI$^3$}} 13 \newcommand{\TOP }{\textsl{TOP}} 14 \newcommand{\PISCES}{\textsl{PISCES}} 15 \newcommand{\NEMOVAR}{\textsl{NEMOVAR}} 16 17 %% Links for external components 18 \newcommand{\AGRIF}{\href{http://agrif.imag.fr}{AGRIF}} 19 \newcommand{\CICE }{\href{http://github.com/CICE-Consortium/CICE}{CICE}} 20 \newcommand{\OASIS}{\href{http://portal.enes.org/oasis}{OASIS}} 21 \newcommand{\XIOS }{\href{http://forge.ipsl.jussieu.fr/ioserver}{XIOS}} 22 23 %% Fortran in small capitals 13 24 \newcommand{\fortran}{\textsc{Fortran}} 14 25 \newcommand{\fninety}{\textsc{Fortran 90}} … … 54 65 %% Workaround for issue with \listoffigures 55 66 \DeclareRobustCommand{\triad}[6][]{\ensuremath{ {}_{#2}^{#3} { \mathbb{#4}_{#1} }_{#5}^{\,#6} }} 67 68 \newcommand{\chaptertoc}[1][Table of contents]{% 69 \thispagestyle{empty} 70 \etocsettocstyle{\addsec*{#1}}{}% 71 \localtableofcontents% 72 \vfill 73 } -
NEMO/trunk/doc/latex/global/packages.tex
r11433 r11515 3 3 %% ============================================================================== 4 4 5 %% 'hyperref' pkg is loaded at the end of the preamble 6 \usepackage{natbib} %% bibtex 7 \usepackage{caption} %% caption 8 \usepackage{xcolor} %% colour 9 \usepackage{times} %% font 10 \usepackage{enumitem} %% list 11 \usepackage{amsmath} %% maths 12 \usepackage{minitoc} %% toc 13 \usepackage{subfiles} %% subdocs 14 \usepackage{draftwatermark} %% watermark 15 \usepackage[Bjornstrup]{fncychap} %% headings 5 %% 'hyperref' pkg is loaded at the end of the preamble for higher compatibility 6 7 %% KOMA-script 8 %\usepackage{scrhack} 9 \usepackage[footsepline=0.25pt, 10 headsepline=0.25pt]{scrlayer-scrpage} 11 12 %% customization (layout, header/footer styles & contents, background) 13 \usepackage{draftwatermark} 14 \usepackage[pass]{geometry} %% 'pass' to enable \restoregeometry only 15 \usepackage[pages = some]{background} %% 'some' for title page 16 \usepackage[Bjornstrup]{fncychap} 17 18 %% fonts 16 19 \usepackage{fontspec} 17 %\setmainfont[Ligatures=TeX]{Georgia} 18 %\setsansfont[Ligatures=TeX]{Arial} 20 %% Issue with fontawesome pkg: path to FontAwesome.otf has to be hard-coded 19 21 \defaultfontfeatures{ 20 22 Path = /home/ntmlod/.local/texlive2019/texmf-dist/fonts/opentype/public/fontawesome/ 21 23 } 22 \usepackage{academicons} %% font 23 \usepackage{fontawesome} %% font 24 \usepackage{lastpage} %% label 25 \usepackage[pages = some]{background} %% decoration 26 \usepackage{geometry} %% margin 24 \usepackage{academicons, fontawesome, newtxtext} 27 25 28 %% Extensions in bundle package 29 \usepackage{amssymb, graphicx, tabularx, textcomp} 30 %\usepackage[utf8]{inputenc} %% encoding 31 \usepackage[footsepline=0.25pt, 32 headsepline=0.25pt]{scrlayer-scrpage} %% page layout 26 %% formatting 27 \usepackage{tabularx, etoc, xcolor} 28 29 %% graphics 30 \usepackage{caption, graphicx} 31 32 %% labels 33 \usepackage{bookmark, lastpage, natbib} 34 35 %% mathematics 36 \usepackage{amsmath, amssymb} 37 38 %% versatility 39 \usepackage{subfiles} 33 40 34 41 %% Configuration 35 42 \graphicspath{ {../../figures/} {../../figures/\engine/} } 36 \geometry{showframe} 43 44 %% Missing utmr8a font 45 \usepackage{times} -
NEMO/trunk/doc/latex/global/preamble.tex
r11433 r11515 8 8 \input{../../global/indexes} 9 9 \input{../../global/styles} 10 \input{../../global/new_cmds} 11 %\input{../../global/todonotes} 12 13 %% Load hyperref at the end of the preamble to make it work with other pkgs 14 \usepackage{hyperref} %% links 15 \hypersetup{ 16 colorlinks, 17 citecolor = manualcolor, linkcolor = manualcolor, urlcolor = manualcolor, 18 final = true %% Links even with draft building 19 } 20 10 21 \backgroundsetup{ 11 22 firstpage = true, … … 17 28 } 18 29 } 19 \input{../../global/new_cmds}20 %\input{../../global/todonotes}21 22 %% Load hyperref at the end of the preamble to make it work with other pkgs23 \usepackage{hyperref} %% links24 \hypersetup{25 colorlinks,26 citecolor = manualcolor, linkcolor = manualcolor, urlcolor = manualcolor,27 final %% Links even with draft building28 } -
NEMO/trunk/doc/latex/global/styles.tex
r11433 r11515 3 3 %% ============================================================================== 4 4 5 \setcolor 6 %\definecolor{ghcolor}{HTML}{000333} 5 %% Colors 6 \setmanualcolor 7 \colorlet{manualcolorshaded}{manualcolor!60} 7 8 \definecolor{orcidcolor}{HTML}{A6CE39} 8 %\definecolor{wpcolor}{HTML}{464646}9 9 10 10 %% Page layout … … 13 13 \addtokomafont{pagefoot}{ \sffamily \footnotesize} 14 14 \addtokomafont{pagenumber}{\sffamily \slshape } 15 \addtokomafont{chapter}{\color{white}} 15 16 \ohead{} \ofoot{} %% Clear defaults 16 17 17 18 %% Caption 18 19 \captionsetup{font = footnotesize, justification = justified} 19 20 %% Additional fonts21 \DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}22 20 23 21 %% Bibliography … … 33 31 \global\let\tikz@ensure@dollar@catcode=\relax 34 32 35 %% Apply engine color for chapter boxes (code from fncychap.sty) 36 %\renewcommand{\DOTI}[1]{ 37 % \nointerlineskip\raggedright 38 % \fboxsep=\myhi 39 % \vskip-1ex 40 % \colorbox[manualcolor]{.85}{\parbox[t]{\mylen}{\CTV\FmTi{#1}}}\par\nobreak 41 % \vskip 40\p@ 42 %} 33 %% Apply engine color for chapter headings: tweaking snippets from fncychap.sty 34 \renewcommand{\DOCH}{% 35 \settowidth{\py}{\CNoV\thechapter} 36 \addtolength{\py}{-10pt} % Amount of space by which the 37 % % number is shifted right 38 \fboxsep=0pt% 39 \colorbox{manualcolor}{\rule{0pt}{40pt}\parbox[b]{\textwidth}{\hfill}}% 40 \kern-\py\raise20pt% 41 \hbox{\color{manualcolorshaded}\CNoV\thechapter}\\% 42 } 43 \renewcommand{\DOTI}[1]{% 44 \nointerlineskip\raggedright% 45 \fboxsep=\myhi% 46 \vskip-1ex% 47 \colorbox{manualcolor}{\parbox[t]{\mylen}{\color{white}\CTV\FmTi{#1}}}\par\nobreak% 48 \vskip 40\p@% 49 } 50 \renewcommand{\DOTIS}[1]{% 51 \fboxsep=0pt 52 \colorbox{manualcolor}{\rule{0pt}{40pt}\parbox[b]{\textwidth}{\hfill}}\\% 53 \nointerlineskip\raggedright% 54 \fboxsep=\myhi% 55 \vskip-1ex% Remove white 1pt line 56 \colorbox{manualcolor}{\parbox[t]{\mylen}{\color{white}\CTV\FmTi{#1}}}\par\nobreak% 57 \vskip 40\p@% 58 } 43 59 44 60 \makeatother
Note: See TracChangeset
for help on using the changeset viewer.