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

source: NEMO/trunk/doc/tools/shr_func.sh @ 11204

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

Bugfix for LaTeX compilation

  • Property svn:executable set to *
File size: 634 bytes
RevLine 
[11004]1#!/bin/sh
2
3clean() {
[11033]4    ## Not sure if this step is needed, guess latexmk should be able to detect a change
[11120]5    printf "\t¤ Clean previous build"
6    find latex/$1/build -mindepth 1 -prune -exec rm -rf {} \;
[11004]7
[11033]8    ## HTML exports
9    #printf '   - possible HTML export'
10    #find latex/$1 -type d -name 'html*'    -exec rm -r {} \;
[11004]11
[11033]12    echo
[11004]13}
14
15build() {
[11033]16    printf "\t¤ Generation of the PDF format\n"
[11177]17    latexmk -r  ./latex/global/latexmkrc  \
[11176]18       -cd ./latex/$1/main/$1_manual \
19       -outdir=../build              \
20       1> /dev/null
[11120]21    [ -f ./latex/$1/build/$1_manual.pdf ] && mv ./latex/$1/build/$1_manual.pdf .
[11033]22    echo
[11004]23}
[11176]24
Note: See TracBrowser for help on using the repository browser.