diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-21 01:05:51 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-21 01:05:51 +0900 |
| commit | f2a7eeca60f681da66104cecc8cba42f62c15226 (patch) | |
| tree | b524dedd61f0c6a7f84c7ced360f6ab2b2f833f9 /sphinx/make_mode.py | |
| parent | 80bfc55795e0543b43a4e5721ada3d44d3c856cf (diff) | |
| parent | ead753eaad7e0f73f106c4bda918f916b6d3638c (diff) | |
| download | sphinx-git-f2a7eeca60f681da66104cecc8cba42f62c15226.tar.gz | |
Merge pull request #2774 from tk0miya/latex_engine
Add `latex_engine` to switch the LaTeX engine by conf.py
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 36f0a4298..3bc8fa2a0 100644 --- a/sphinx/make_mode.py +++ b/sphinx/make_mode.py @@ -41,8 +41,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"), @@ -172,18 +170,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 |
