pinpss / latexamu

classe LaTeX thèses AMU

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compilation

Install TeX Live in the usual way.

compile with

pdflatex these
biber these
makeindex these
makeglossaries these
pdflatex these
pdflatex these

makeindex these
makeglossaries these
pdflatex these

or use Latexmk and add the following lines to some .latexmkrc initialization file (already done in repo):

add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');

sub run_makeglossaries {
  if ( $silent ) {
    system "makeglossaries -q '$_[0]'";
  }
  else {
    system "makeglossaries '$_[0]'";
  };
}
$clean_ext = "acn acr alg glg glo gls nlg nlo ntn xdy run.xml not bbl";

then compile with

latexmk -pdf

and erase temp files with

latexmk -c

Contributing

Bug reports and pull requests are welcome on GitHub.

About

classe LaTeX thèses AMU


Languages

Language:PostScript 74.2%Language:TeX 25.6%Language:Perl 0.2%