diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-03 18:14:19 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-19 11:03:10 +0900 |
commit | 0bafd9ee21eee9f2f800a79062dd6590a2a51575 (patch) | |
tree | d968e13a75004d00cee29778faa2cad8ab71972e /sphinx/quickstart.py | |
parent | 2c5a9f39754b904402d7d8e2a2f619c0010d74cc (diff) | |
download | sphinx-git-0bafd9ee21eee9f2f800a79062dd6590a2a51575.tar.gz |
Support multiple LaTeX engines through `latex_engine`
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 5aa47cb61..ae4d90ad3 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -565,8 +565,6 @@ help: \t@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" \t@echo " latexpdf to make LaTeX files and run them through pdflatex" \t@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" -\t@echo " lualatexpdf to make LaTeX files and run them through lualatex" -\t@echo " xelatexpdf to make LaTeX files and run them through xelatex" \t@echo " text to make text files" \t@echo " man to make manual pages" \t@echo " texinfo to make Texinfo files" @@ -686,20 +684,6 @@ latexpdfja: \t$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja \t@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." -.PHONY: lualatexpdf -lualatexpdf: -\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex -\t@echo "Running LaTeX files through lualatex..." -\t$(MAKE) PDFLATEX=lualatex -C $(BUILDDIR)/latex all-pdf -\t@echo "lualatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: xelatexpdf -xelatexpdf: -\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex -\t@echo "Running LaTeX files through xelatex..." -\t$(MAKE) PDFLATEX=xelatex -C $(BUILDDIR)/latex all-pdf -\t@echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex." - .PHONY: text text: \t$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text |