elog2labfolder/_build/latex/latexmkrc
author weiher
Thu, 11 Jan 2018 12:10:42 +0100
changeset 3 b71be85a294c
permissions -rw-r--r--
Initial commit of labfolder at FHI documentation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     1
$latex = 'latex ' . $ENV{'LATEXOPTS'} . ' %O %S';
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     2
$pdflatex = 'pdflatex ' . $ENV{'LATEXOPTS'} . ' %O %S';
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     3
$lualatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S';
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     4
$xelatex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S';
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     5
$makeindex = 'makeindex -s python.ist %O -o %D %S';
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     6
add_cus_dep( "glo", "gls", 0, "makeglo" );
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     7
sub makeglo {
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     8
 return system( "makeindex -s gglo.ist -o '$_[0].gls' '$_[0].glo'" );
b71be85a294c Initial commit of labfolder at FHI documentation
weiher
parents:
diff changeset
     9
}