cpython/Doc
Guido van Rossum 5153e5ecd7 Updated to reflect the change to TeX. 1991-01-25 13:29:53 +00:00
..
lib Changed \begin{code} and \end{code} into \bcode and \ecode. 1991-01-25 13:26:13 +00:00
tut Changed code environment into \bcode and \ecode macros. 1991-01-25 13:27:18 +00:00
Makefile Took out (di)troff references. 1991-01-25 13:29:04 +00:00
README Updated to reflect the change to TeX. 1991-01-25 13:29:53 +00:00
lib.tex Changed \begin{code} and \end{code} into \bcode and \ecode. 1991-01-25 13:26:13 +00:00
myformat.sty Changed code environment into \bcode and \ecode macros. 1991-01-25 13:28:15 +00:00
tut.tex Changed code environment into \bcode and \ecode macros. 1991-01-25 13:27:18 +00:00

README

This directory contains the LaTeX source to the Python documentation.
The documentation is not all finished, but good enough to get you some
idea of how to program in Python.

The following are the important latex source files:

	tut.tex		tutorial
	mod.tex		library reference

They both read the style option file "myformat.sty".

You can use the Makefile to format, preview and print the documents.
Type "make tut" or "make mod" to preview either document with xdvi.
Type "make print" to print them both (this only works if your print
spooler is set up just like mine...), or "make all" to create postscript
files that you can you can print using your local printing commands.
Type "make clean" to get rid of all the intermediate files produced by
the latex process.

You can just as well ignore the Makefile; all you really need is:
	latex tut
	latex tut
	dvips tut | lpr
and similar for the "mod" document.