|
From: <jd...@us...> - 2008-05-24 21:04:51
|
Revision: 5254
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5254&view=rev
Author: jdh2358
Date: 2008-05-24 14:04:44 -0700 (Sat, 24 May 2008)
Log Message:
-----------
fixed the latex build
Modified Paths:
--------------
trunk/matplotlib/docs/conf.py
trunk/matplotlib/docs/make.py
Modified: trunk/matplotlib/docs/conf.py
===================================================================
--- trunk/matplotlib/docs/conf.py 2008-05-24 20:49:31 UTC (rev 5253)
+++ trunk/matplotlib/docs/conf.py 2008-05-24 21:04:44 UTC (rev 5254)
@@ -139,10 +139,12 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
+
latex_documents = [
- ('index', 'Matplotlib.tex', 'Matplotlib', 'John Hunter, Darren Dale', 'Michael Droettboom', 'manual'),
+ ('index', 'Matplotlib.tex', 'Matplotlib', 'John Hunter, Darren Dale, Michael Droettboom', 'manual'),
]
+
# The name of an image file (relative to this directory) to place at the top of
# the title page.
latex_logo = None
Modified: trunk/matplotlib/docs/make.py
===================================================================
--- trunk/matplotlib/docs/make.py 2008-05-24 20:49:31 UTC (rev 5253)
+++ trunk/matplotlib/docs/make.py 2008-05-24 21:04:44 UTC (rev 5254)
@@ -30,11 +30,11 @@
os.chdir('build/latex')
# Copying the makefile produced by sphinx...
- os.system('pdflatex Matplotlib_Users_Guide.tex')
- os.system('pdflatex Matplotlib_Users_Guide.tex')
- os.system('makeindex -s python.ist Matplotlib_Users_Guide.idx')
- os.system('makeindex -s python.ist modMatplotlib_Users_Guide.idx')
- os.system('pdflatex Matplotlib_Users_Guide.tex')
+ os.system('pdflatex Matplotlib.tex')
+ os.system('pdflatex Matplotlib.tex')
+ os.system('makeindex -s python.ist Matplotlib.idx')
+ os.system('makeindex -s python.ist modMatplotlib.idx')
+ os.system('pdflatex Matplotlib.tex')
os.chdir('../..')
else:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|