Lines Matching full:latex
26 .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \
37 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
85 latex: BUILDER = latex target
86 latex: build target
87 @echo "Build finished; the LaTeX files are in build/latex."
89 "run these through (pdf)latex."
185 # archive the A4 latex
186 rm -rf build/latex
187 make latex PAPER=a4
188 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
189 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
190 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
191 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
193 # archive the letter latex
194 rm -rf build/latex
195 make latex PAPER=letter
196 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
197 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
198 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
199 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2