Skip to content

Commit 7fcc279

Browse files
committed
added a request for pdflatex nonstop mode, not sure if this will work
1 parent 00e8366 commit 7fcc279

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ script:
8080
- if [[ "${DOCTEST}" == "1" ]]; then
8181
cd $TRAVIS_BUILD_DIR/doc;
8282
make doctest;
83-
make latexpdf;
83+
make latexpdf LATEXOPTS="--interaction=nonstopmode";
8484
fi
8585

8686
after_success:

doc/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ help:
2626
@echo " devhelp to make HTML files and a Devhelp project"
2727
@echo " epub to make an epub"
2828
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
29-
@echo " latexpdf to make LaTeX files and run them through pdflatex"
29+
@echo " latexpdf to make LaTeX files and run them through latexmk"
3030
@echo " text to make text files"
3131
@echo " man to make manual pages"
3232
@echo " changes to make an overview of all changed/added/deprecated items"
@@ -99,9 +99,9 @@ latex:
9999

100100
latexpdf:
101101
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
102-
@echo "Running LaTeX files through pdflatex..."
102+
@echo "Running LaTeX files through latexmk..."
103103
$(MAKE) -C $(BUILDDIR)/latex all-pdf
104-
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
104+
@echo "latexmk finished; the PDF files are in $(BUILDDIR)/latex."
105105

106106
text:
107107
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text

0 commit comments

Comments
 (0)