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

source: NEMO/trunk/doc/inc/build.sh @ 10075

Last change on this file since 10075 was 9407, checked in by nicolasmartin, 6 years ago

Complete refactoring of cross-referencing

  • Use of \autoref instead of simple \ref for contextual text depending on target type
  • creation of few prefixes for marker to identify the type reference: apdx|chap|eq|fig|sec|subsec|tab
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 274 bytes
Line 
1#!/bin/sh
2
3latex_file='NEMO_manual'
4latex_opts='-shell-escape -interaction=nonstopmode'
5
6cd tex_main
7
8latex       ${latex_opts}           ${latex_file}
9makeindex   -s ${latex_file}.ist    ${latex_file}
10bibtex                              ${latex_file}
11latex       ${latex_opts}           ${latex_file}
12
13cd -
14
15exit 0
Note: See TracBrowser for help on using the repository browser.