diff options
author | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
commit | eadac6a4b811db258d2b4d5dd4dec4fb0551ca4d (patch) | |
tree | 0ee9d092e8f52117148beabe162c1b0e6421da7a /Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd | |
parent | 5cf6f77f3a4d03a7ffcb78f2fef5f5172905534a (diff) |
disser (5jul16)
git-svn-id: svn://tug.org/texlive/trunk@41635 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd')
-rw-r--r-- | Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd b/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd index fefdb440a16..d19bcc767c4 100644 --- a/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd +++ b/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd @@ -44,14 +44,14 @@ if "%psnupflags%"=="" set psnupflags=-2 -pA4 if "%pdflatexflags%"=="" set pdflatexflags=--shell-escape --synctex=1 if "%clext%"=="" set clext=*.bbl *.bak *.aux *.blg *.out *.toc *.log ^ - *.dvi *.tmp *.ps *.pdf *.synctex *.synctex.gz + *.dvi *.tmp *.ps *.pdf *.synctex *.synctex.gz *.run.xml *.bcf if "%clfiles%"=="" set clfiles=!clext! %archive% if "%srcfiles%"=="" set srcfiles=* if "%prereq%"=="" set prereq=*.tex *.bib if "%1"=="" ( - call :dvi + call :pdf ) else ( for %%f in (%*) do call :%%f ) @@ -71,7 +71,7 @@ goto :eof ) %latex% %latexflags% %target%.tex if exist %bibfile% ( - for %%f in (*.aux) do %bibtex% %bibtexflags% %%f + for %%f in (*.aux) do %bibtex% %bibtexflags% %%~nf ) else ( echo Warning: Bibliography file does not exist ) @@ -80,10 +80,10 @@ goto :eof goto :eof :help - echo dvi ^(default^) build DVI + echo dvi build DVI echo figclean clean output files in figures directory echo html convert DVI to HTML - echo pdf build PDF + echo pdf ^(default^) build PDF echo pdf_2on1 build PDF with two A5 pages on one A4 ordered by number echo pdf_book build PDF booklet ^(two A5 on A4^) echo ps build PS @@ -112,7 +112,7 @@ goto :eof ) %pdflatex% %pdflatexflags% %target%.tex if exist %bibfile% ( - for %%f in (*.aux) do %bibtex% %bibtexflags% %%f + for %%f in (*.aux) do %bibtex% %bibtexflags% %%~nf ) else ( echo Warning: Bibliography file does not exist ) |