Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 1 | This directory contains the LaTeX source to the Python documentation. |
| 2 | The documentation is not all finished, but good enough to get you some |
| 3 | idea of how to program in Python. |
Guido van Rossum | 7f777ed | 1990-08-09 14:25:15 +0000 | [diff] [blame] | 4 | |
Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 5 | The following are the important latex source files: |
Guido van Rossum | 7f777ed | 1990-08-09 14:25:15 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 7 | tut.tex tutorial |
| 8 | mod.tex library reference |
Guido van Rossum | 7f777ed | 1990-08-09 14:25:15 +0000 | [diff] [blame] | 9 | |
Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 10 | They both read the style option file "myformat.sty". |
Guido van Rossum | 7f777ed | 1990-08-09 14:25:15 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 12 | You can use the Makefile to format, preview and print the documents. |
| 13 | Type "make tut" or "make mod" to preview either document with xdvi. |
| 14 | Type "make print" to print them both (this only works if your print |
| 15 | spooler is set up just like mine...), or "make all" to create postscript |
| 16 | files that you can you can print using your local printing commands. |
| 17 | Type "make clean" to get rid of all the intermediate files produced by |
| 18 | the latex process. |
Guido van Rossum | 7f777ed | 1990-08-09 14:25:15 +0000 | [diff] [blame] | 19 | |
Guido van Rossum | 5153e5e | 1991-01-25 13:29:53 +0000 | [diff] [blame] | 20 | You can just as well ignore the Makefile; all you really need is: |
| 21 | latex tut |
| 22 | latex tut |
| 23 | dvips tut | lpr |
| 24 | and similar for the "mod" document. |