Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 53beb6a

Browse files
committed
fixed the latex build
svn path=/trunk/matplotlib/; revision=5254
1 parent f0f28a3 commit 53beb6a

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

docs/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,12 @@
139139

140140
# Grouping the document tree into LaTeX files. List of tuples
141141
# (source start file, target name, title, author, document class [howto/manual]).
142+
142143
latex_documents = [
143-
('index', 'Matplotlib.tex', 'Matplotlib', 'John Hunter, Darren Dale', 'Michael Droettboom', 'manual'),
144+
('index', 'Matplotlib.tex', 'Matplotlib', 'John Hunter, Darren Dale, Michael Droettboom', 'manual'),
144145
]
145146

147+
146148
# The name of an image file (relative to this directory) to place at the top of
147149
# the title page.
148150
latex_logo = None

docs/make.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ def latex():
3030
os.chdir('build/latex')
3131

3232
# Copying the makefile produced by sphinx...
33-
os.system('pdflatex Matplotlib_Users_Guide.tex')
34-
os.system('pdflatex Matplotlib_Users_Guide.tex')
35-
os.system('makeindex -s python.ist Matplotlib_Users_Guide.idx')
36-
os.system('makeindex -s python.ist modMatplotlib_Users_Guide.idx')
37-
os.system('pdflatex Matplotlib_Users_Guide.tex')
33+
os.system('pdflatex Matplotlib.tex')
34+
os.system('pdflatex Matplotlib.tex')
35+
os.system('makeindex -s python.ist Matplotlib.idx')
36+
os.system('makeindex -s python.ist modMatplotlib.idx')
37+
os.system('pdflatex Matplotlib.tex')
3838

3939
os.chdir('../..')
4040
else:

0 commit comments

Comments
 (0)