Lines Matching full:latex
18 .PHONY: help build html htmlhelp latex text changes linkcheck \
29 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
69 latex: BUILDER = latex target
70 latex: build target
71 @echo "Build finished; the LaTeX files are in build/latex."
73 "run these through (pdf)latex."
151 # archive the A4 latex
152 rm -rf build/latex
153 make latex PAPER=a4
154 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
155 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
156 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
157 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
159 # archive the letter latex
160 rm -rf build/latex
161 make latex PAPER=letter
162 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
163 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
164 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
165 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2