Lines Matching full:latex
16 .PHONY: help build html htmlhelp latex text changes linkcheck \
26 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
52 latex: BUILDER = latex target
53 latex: build target
54 @echo "Build finished; the LaTeX files are in build/latex."
56 "run these through (pdf)latex."
129 # archive the A4 latex
130 rm -rf build/latex
131 make latex PAPER=a4
132 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
133 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
134 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
135 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
137 # archive the letter latex
138 rm -rf build/latex
139 make latex PAPER=letter
140 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
141 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
142 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
143 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2