summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/include/latex.nmk.cmd
diff options
context:
space:
mode:
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.cmd12
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
)