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/make_mode.py | |
parent | 2c5a9f39754b904402d7d8e2a2f619c0010d74cc (diff) | |
download | sphinx-git-0bafd9ee21eee9f2f800a79062dd6590a2a51575.tar.gz |
Support multiple LaTeX engines through `latex_engine`
Diffstat (limited to 'sphinx/make_mode.py')
-rw-r--r-- | sphinx/make_mode.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py index 9a17895bd..3b7c29383 100644 --- a/sphinx/make_mode.py +++ b/sphinx/make_mode.py @@ -42,8 +42,6 @@ BUILDERS = [ ("", "latex", "to make LaTeX files, you can set PAPER=a4 or PAPER=letter"), ("posix", "latexpdf", "to make LaTeX files and run them through pdflatex"), ("posix", "latexpdfja", "to make LaTeX files and run them through platex/dvipdfmx"), - ("posix", "lualatexpdf", "to make LaTeX files and run them through lualatex"), - ("posix", "xelatexpdf", "to make LaTeX files and run them through xelatex"), ("", "text", "to make text files"), ("", "man", "to make manual pages"), ("", "texinfo", "to make Texinfo files"), @@ -173,18 +171,6 @@ class Make(object): with cd(self.builddir_join('latex')): os.system('make all-pdf-ja') - def build_lualatexpdf(self): - if self.run_generic_build('latex') > 0: - return 1 - with cd(self.builddir_join('latex')): - os.system('make PDFLATEX=lualatex all-pdf') - - def build_xelatexpdf(self): - if self.run_generic_build('latex') > 0: - return 1 - with cd(self.builddir_join('latex')): - os.system('make PDFLATEX=xelatex all-pdf') - def build_text(self): if self.run_generic_build('text') > 0: return 1 |