Changeset 11212
- Timestamp:
- 2019-07-03T21:21:59+02:00 (5 years ago)
- Location:
- NEMO/trunk/doc
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/doc/latex/DEPS
r11187 r11212 23 23 helvetic 24 24 hyperref 25 idxlayout26 25 ifplatform 26 imakeidx 27 27 koma-script 28 28 latex 29 latexconfig 29 30 latex-bin 30 latexconfig31 31 latex-fonts 32 32 latexmk … … 53 53 wrapfig 54 54 xcolor 55 xkeyval 55 56 xstring 56 57 zapfchan 57 58 58 -
NEMO/trunk/doc/latex/NEMO/build
- Property svn:ignore
-
old new 8 8 *.ilg 9 9 *.ind 10 *.lof 11 *.log 12 *.lot 10 *.lo* 13 11 *.maf 14 12 *.mtc*
-
- Property svn:ignore
-
NEMO/trunk/doc/latex/NEMO/main/thanks.tex
r11170 r11212 1 TBD 1 J\'{e}r\^{o}me Chanut, 2 Silvia Mocavero -
NEMO/trunk/doc/latex/SI3/build
- Property svn:ignore
-
old new 8 8 *.ilg 9 9 *.ind 10 *.lof 11 *.log 12 *.lot 10 *.lo* 13 11 *.maf 14 12 *.mtc*
-
- Property svn:ignore
-
NEMO/trunk/doc/latex/TOP/build
- Property svn:ignore
-
old new 8 8 *.ilg 9 9 *.ind 10 *.lof 11 *.log 12 *.lot 10 *.lo* 13 11 *.maf 14 12 *.mtc*
-
- Property svn:ignore
-
NEMO/trunk/doc/latex/global/document.tex
r11187 r11212 62 62 \listoffigures 63 63 \listoftables 64 \listoflistings 64 65 65 66 \clearpage -
NEMO/trunk/doc/latex/global/highlighting.tex
r11176 r11212 5 5 6 6 %% Global highlighting style 7 \setminted{style=emacs, fontsize=\scriptsize, breaklines, frame=leftline} 7 \definecolor{bg}{HTML}{f8f8f8} 8 \usemintedstyle{emacs} 9 \setminted{bgcolor=bg, fontsize=\scriptsize, breaklines, frame=leftline} 8 10 \setminted[xml]{style=borland} %% Specific per language 9 11 … … 26 28 \newmintinline[xmlcode]{xml}{ fontsize=auto, frame=lines} % \xmlcode{...} 27 29 \newmintinline[snippet]{console}{fontsize=auto, frame=lines} % \snippet{...} 30 31 %% Namelists inclusion 32 \newcommand{\nlst}[1]{\forfile{../../../namelists/#1}} 33 -
NEMO/trunk/doc/latex/global/indexes.tex
r11189 r11212 27 27 % pdfauthor={\firstauthor and \secondauthor}, 28 28 colorlinks, 29 urlcolor=blue 29 citecolor=olive, 30 linkcolor=blue, 31 urlcolor=gray 30 32 } -
NEMO/trunk/doc/latex/global/latexmkrc
r11178 r11212 1 1 2 $silent = 1; 2 ## Defaults 3 $silent = 1; 3 4 $pdf_mode = 1; 4 $makeindex = "makeindex -s %R.ist %O -o %D %S";5 $pdflatex = 'pdflatex -shell-escape %O %S';6 5 6 ## Using relative paths 7 $ENV{'openout_any'}='a'; 8 $out_dir = '../build'; 9 10 ## Custom cmds 11 $makeindex = 'makeindex -s %R.ist %O -o %D %S'; 12 $pdflatex = 'pdflatex -shell-escape %O %S'; 13 14 #@BIBINPUTS=('.', '../main'); 15 #$bibtex = 'bibtex %O ../main/bibliography.bib'; 16 #$kpsewhich = 'kpsewhich bibliography.bib' 17 -
NEMO/trunk/doc/latex/global/new_cmds.tex
r11187 r11212 34 34 \newcommand{\pd}[2][]{\ensuremath{\frac{\partial #1}{\partial #2}}} 35 35 36 %% Namelists inclusion37 \newcommand{\nlst}[1]{\forfile{../../../namelists/#1}}38 39 36 %% Workaround for issue with \listoffigures 40 37 \DeclareRobustCommand{\triad}[6][]{\ensuremath{{}_{#2}^{#3}{\mathbb{#4}_{#1}}_{#5}^{\,#6}}} -
NEMO/trunk/doc/latex/global/styles.tex
r11189 r11212 8 8 \renewcommand{\bibpostamble}{\end{multicols}} 9 9 10 %% Addition nal fonts10 %% Additional fonts 11 11 \DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it} 12 12 -
NEMO/trunk/doc/manual_build.sh
r11176 r11212 3 3 ## Initialisation 4 4 ##--------------- 5 6 ## Env. variable for using relative paths with latexmk7 export openout_any='a'8 5 9 6 ## Default selection for models -
NEMO/trunk/doc/tools/shr_func.sh
r11177 r11212 4 4 ## Not sure if this step is needed, guess latexmk should be able to detect a change 5 5 printf "\t¤ Clean previous build" 6 find latex/$1/build -mindepth 1 -prune - exec rm -rf {} \;6 find latex/$1/build -mindepth 1 -prune -not -name $1_manual.pyg -exec rm -rf {} \; 7 7 8 8 ## HTML exports … … 17 17 latexmk -r ./latex/global/latexmkrc \ 18 18 -cd ./latex/$1/main/$1_manual \ 19 -outdir=../build \20 19 1> /dev/null 21 20 [ -f ./latex/$1/build/$1_manual.pdf ] && mv ./latex/$1/build/$1_manual.pdf .
Note: See TracChangeset
for help on using the changeset viewer.