diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/hitszthesis/latexmkrc')
-rw-r--r-- | Master/texmf-dist/doc/latex/hitszthesis/latexmkrc | 55 |
1 files changed, 36 insertions, 19 deletions
diff --git a/Master/texmf-dist/doc/latex/hitszthesis/latexmkrc b/Master/texmf-dist/doc/latex/hitszthesis/latexmkrc index 3ba76129433..e8cd866595a 100644 --- a/Master/texmf-dist/doc/latex/hitszthesis/latexmkrc +++ b/Master/texmf-dist/doc/latex/hitszthesis/latexmkrc @@ -1,23 +1,40 @@ # vim: set ft=perl: +@default_files = ('main.tex'); -$pdf_mode = 5; - -$xelatex = "xelatex -file-line-error -halt-on-error -interaction=nonstopmode -no-pdf -synctex=1 %O %S"; -$xdvipdfmx = "xdvipdfmx -q -E -o %D %O %S"; - -$bibtex_use = 1.5; - -$clean_ext = "hd loe synctex.gz thm xdv"; - -$makeindex = "makeindex -s gind.ist %O -o %D %S"; -add_cus_dep('glo', 'gls', 0, 'glo2gls'); -sub glo2gls { - system("makeindex -s gglo.ist -o \"$_[0].gls\" \"$_[0].glo\""); +$pdf_mode = 1; +$bibtex_use = 2; +$recorder = 1; +$preview_continuous_mode = 1; +$clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx"; +$pdflatex = "xelatex -file-line-error --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S;cp %D %R.pdf"; +$pdf_update_method = 0; +$makeindex = 'internal splitindex'; +sub splitindex { + # Use splitindex instead of makeindex. + # The splitindex programe starts from an .idx file, makes a set of + # other .idx files for separate indexes, and then runs makeindex to + # make corresponding .ind files. + # However, it is possible that the document uses the splitindex + # package, but in a way compatible with the standard methods + # compatible with makeindex, i.e., with a single index and with the + # use of the \printindex command. + # Then we need to invoke makeindex. + # In addition, latexmk assumes that makeindex or its replacement makes + # an .ind file from an .idx file, and latexmk gives an error if it + # doesn't exist, we need to make an .ind file. + # Both problems are solved by running makeindex and then splitindex. + # Note: errors are returned by makeindex and splitindex for things + # like a missing input file. No error is returned for lines in an + # input file that are in an incorrect format; they are simply + # ignored. So no problem is caused by lines in the .idx file + # that are generated by splitindex in a format incompatible with + # makeindex. + my $ret1 = system( "makeindex", $$Psource ); + my $ret2 = system( "splitindex", $$Psource ); + return $ret1 || $ret2; } -push @generated_exts, 'glo', 'gls'; +@cus_dep_list = (@cus_dep_list, "idx ind 0 makenomenclature"); +sub makenomenclature { + system("splitindex $_[0] -- -s $_[0].ist"); } +@generated_exts = (@generated_exts, 'glo'); -add_cus_dep('nlo', 'nls', 0, 'nlo2nls'); -sub nlo2nls { - system("makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\""); -} -push @generated_exts, 'nlo', 'nls'; |