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.
packages.tex in NEMO/trunk/doc/latex/global – NEMO

source: NEMO/trunk/doc/latex/global/packages.tex

Last change on this file was 14257, checked in by nicolasmartin, 3 years ago

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
File size: 1.4 KB
Line 
1%% =================================================================================================
2%% Packages
3%% =================================================================================================
4
5%% Document class
6\usepackage[footsepline=0.25pt,headsepline=0.25pt]{scrlayer-scrpage} %% KOMA-script
7
8%% Customisation (cover page, chapter headings and mark of draft copy)
9\usepackage[margin=2cm]{geometry} %% Why 2cm margin? Load geometry before background!
10\usepackage[pages=some]{background} %% 'some' for title page
11\usepackage[scale=15,color=pink]{draftwatermark}
12\usepackage[Bjornstrup]{fncychap} %% Chapter style
13
14%% Fonts
15\usepackage{fontspec}
16%% Issue with path to 'FontAwesome.otf'
17\defaultfontfeatures{Path=/usr/local/texlive/2020/texmf-dist/fonts/opentype/public/fontawesome/}
18\usepackage{academicons,fontawesome}
19
20%% Formatting
21\usepackage[inline]{enumitem}
22\usepackage{etoc,tabularx,xcolor}
23
24%% Graphics
25\usepackage{caption}
26\graphicspath{{../../../badges/}{../figures/}{../../../logos/}}
27
28%% Labels
29\usepackage{lastpage,natbib}
30%\usepackage{natbib,pageslts}
31
32%% Mathematics: 'amsmath' is loaded by 'mathtools'
33\usepackage{mathtools,amssymb}
34
35%% Versatility
36\usepackage{subfiles}
37
38%% Source code listings
39\usepackage[cachedir=cache,outputdir=../build,chapter,newfloat]{minted}
40%% chapter? newfloat?
41
42%% Indexing and cross-referencing, loaded at the end for higher compatibility
43\usepackage{hyperref,imakeidx}
44
45%% Missing utmr8a font
46\usepackage{times}
Note: See TracBrowser for help on using the repository browser.