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

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

Bugfix for LaTeX compilation

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