Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame^] | 1 | % |
| 2 | % manual.cls for the Python documentation |
| 3 | % |
| 4 | |
| 5 | \NeedsTeXFormat{LaTeX2e}[1995/12/01] |
| 6 | \ProvidesClass{manual} |
| 7 | [1998/03/03 Python manual] |
| 8 | |
| 9 | % Change the options here to get a different set of basic options, This |
| 10 | % is where to add things like "a4paper" or "10pt". |
| 11 | % |
| 12 | \LoadClass[twoside,openright]{report} |
| 13 | |
| 14 | |
| 15 | % Optional packages: |
| 16 | % |
| 17 | % If processing of these documents fails at your TeX installation, |
| 18 | % these may be commented out (independently) to make things work. |
| 19 | % These are both supplied with the current version of the teTeX |
| 20 | % distribution. |
| 21 | % |
| 22 | % The "fancyhdr" package makes nicer page footers reasonable to |
| 23 | % implement, and is used to put the chapter and section information in |
| 24 | % the footers. |
| 25 | % |
| 26 | % The "times" package makes the default font the PostScript Times |
| 27 | % font, which makes for smaller PostScript and a font that more people |
| 28 | % like. |
| 29 | % |
| 30 | \RequirePackage{fancyhdr}\typeout{Using fancier footers than usual.} |
| 31 | \RequirePackage{times}\typeout{Using times fonts instead of Computer Modern.} |
| 32 | |
| 33 | |
| 34 | % Required package: |
| 35 | % |
| 36 | % This gives us all the Python-specific markup that we really want. |
| 37 | % This should come last. Do not change this. |
| 38 | % |
| 39 | \RequirePackage{python} |