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.
Changeset 14257 for NEMO/trunk/doc/tools – NEMO

Changeset 14257 for NEMO/trunk/doc/tools


Ignore:
Timestamp:
2021-01-04T16:13:36+01:00 (4 years ago)
Author:
nicolasmartin
Message:

Overall review of LaTeX sources (not tested completely as of now):

  • Reworking global files: main document.tex, add glossary.tex, cosmetic changes...
  • Ignore missing namelists (namsbc_isf, namsbc_iscpl and namptr)
  • Removal of references for unused indices (\hfile, \ifile and \jp)
  • Update of .svnignore and svn:ignore properties accordingly
  • Split of manual abstract into a common NEMO abs for all and a specific one for each engine
  • Shrinking variables names used in the frontmatter
Location:
NEMO/trunk/doc/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/doc/tools/check_pkg.py

    r11008 r14257  
    1 #!/usr/bin/env python 
     1#!/usr/bin/env python3 
    22 
    33import sys, importlib 
     
    77      importlib.import_module(argv) 
    88   except ImportError: 
    9       print("Package %s is missing in Python" % argv) 
     9      print("Package %s is missing in Python 3" % argv) 
    1010 
  • NEMO/trunk/doc/tools/shr_func.sh

    r14113 r14257  
    88 
    99build() { 
    10     printf "\t¤ Generation of the PDF format\n" 
    11     latexmk -r ./latex/global/latexmk.pl -pdfxe ./latex/$1/main/$1_manual \ 
    12 #  1> /dev/null 
     10    printf "\t¤ Generation of the PDF export of the manual\n" 
     11    latexmk -r ./latex/global/latexmk.pl ./latex/$1/main/$1_manual \ 
     12   1> /dev/null 
    1313    [ -f ./latex/$1/build/$1_manual.pdf ] && mv ./latex/$1/build/$1_manual.pdf . 
    1414    echo 
Note: See TracChangeset for help on using the changeset viewer.