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_NEMO_manual.sh in branches/2017/dev_merge_2017/DOC – NEMO

source: branches/2017/dev_merge_2017/DOC/build_NEMO_manual.sh @ 9392

Last change on this file since 9392 was 9388, checked in by nicolasmartin, 6 years ago

Global reorganisation of DOC directory: implementation and configuration of syntax highlighting with 'minted' LaTeX package
New macros have been created to insert different source codes (fortran, xml, c and shell-session) in the document.
Pygments Python package is now required to compile the documentation.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 302 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}.sty    ${latex_file}
10bibtex                              ${latex_file}
11
12pdflatex    ${latex_opts}           ${latex_file}
13
14mv ${latex_file}.pdf ..
15
16cd -
17
18exit 0
Note: See TracBrowser for help on using the repository browser.