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.
manual_build.sh in NEMO/trunk/doc – NEMO

source: NEMO/trunk/doc/manual_build.sh @ 11043

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

Several fixes for the LaTeX compilation of the manuals

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.1 KB
RevLine 
[9407]1#!/bin/sh
2
[11004]3## Initialisation
4##---------------
[9407]5
[11004]6## latekmk options
[11013]7opts='-shell-escape -quiet -pdf'
[10474]8
[11004]9## Default selection for models
10if   [ "$1" = 'all' ]; then
11   models='NEMO SI3 TOP'
12elif [ "$1" =    '' ]; then
13   models='NEMO'
14else
15   models=$*
16fi
[10146]17
[11004]18# Source shared functions
19. tools/shr_func.sh
[10146]20
21
[11004]22## Check dependancies
23##-------------------
[10474]24
[11004]25## LaTeX installation, find latexmk should be enough
26[ -z $( which latexmk ) ] && { echo 'latexmk binary is not present => QUIT'; exit 2; }
[10474]27
[11004]28## Retrieve figures if not already there
29if [ ! -d latex/figures ]; then
[11033]30   printf "Downloading of shared figures and logos\n\n"
[11004]31   svn co https://forge.ipsl.jussieu.fr/nemo/svn/utils/figures latex/figures > /dev/null
32fi
[10610]33
[11004]34## Pygments package for syntax highlighting of source code (namelists & snippets)
35[ -n "$( ./tools/check_pkg.py pygments )" ] && { exit 2; }
[10146]36
[11004]37
38## Loop on the models
39##-------------------
40
41for model in $models; do
[11033]42   echo $model
[11004]43   clean $model; build $model
[11033]44   printf "\t¤ End of building run\n"
45   printf "\t  The export should be available at root\n"
46   printf "\t  If not check LaTeX log in ./latex/$model/main/${model}_manual.log\n"
[11043]47   echo
[11004]48done
49
[9407]50exit 0
Note: See TracBrowser for help on using the repository browser.