blob: 1a6ed791d6fa04ce99995eaa07ec5851cae487cd [file] [log] [blame]
Fred Drakedbe132c1998-03-06 21:21:56 +00001%
2% howto.cls for the Python documentation
3%
4
5\NeedsTeXFormat{LaTeX2e}[1995/12/01]
6\ProvidesClass{howto}
7 [1998/02/25 Document class (Python HOWTO)]
8
9
10% Change the options here to get a different set of basic options, This
11% is where to add things like "a4paper" or "10pt".
12%
13\LoadClass[twoside]{article}
14
15
16% Optional packages:
17%
18% If processing of these documents fails at your TeX installation,
19% these may be commented out (independently) to make things work.
20% These are both supplied with the current version of the teTeX
21% distribution.
22%
23% The "fancyhdr" package makes nicer page footers reasonable to
24% implement, and is used to put the chapter and section information in
25% the footers.
26%
Fred Drakedbe132c1998-03-06 21:21:56 +000027\RequirePackage{fancyhdr}\typeout{Using fancier footers than usual.}
Fred Drakedbe132c1998-03-06 21:21:56 +000028
29
30% Required package:
31%
32% This gives us all the Python-specific markup that we really want.
33% This should come last. Do not change this.
34%
Fred Drakedbe132c1998-03-06 21:21:56 +000035\RequirePackage{python}
36
37
Fred Drake55730311998-03-25 15:41:23 +000038% need to do one of these....
Fred Drake2a3ab4f1998-04-28 18:31:50 +000039\newcommand{\py@doHorizontalRule}{\rule{\textwidth}{1pt}}
Fred Drake55730311998-03-25 15:41:23 +000040
41
Fred Drakedbe132c1998-03-06 21:21:56 +000042% Change the title page to look a bit better, and fit in with the
43% fncychap ``Bjarne'' style a bit better.
44%
45\renewcommand{\maketitle}{
Fred Drake2a3ab4f1998-04-28 18:31:50 +000046 \py@doHorizontalRule
Fred Drakedbe132c1998-03-06 21:21:56 +000047 \@ifundefined{pdfinfo}{}{
Fred Drakec0b2e451998-03-25 14:53:43 +000048 \pdfinfo{
49 /Author (\@author)
50 /Title (\@title)
51 }
Fred Drakedbe132c1998-03-06 21:21:56 +000052 }
53 \begin{flushright}
Fred Drake2a3ab4f1998-04-28 18:31:50 +000054 {\rm\Huge\py@HeaderFamily \@title} \par
55 {\em\large\py@HeaderFamily \py@release} \par
Fred Drakedbe132c1998-03-06 21:21:56 +000056 \vspace{25pt}
Fred Drake2a3ab4f1998-04-28 18:31:50 +000057 {\Large\py@HeaderFamily \@author} \par
Fred Drakedbe132c1998-03-06 21:21:56 +000058 \vspace{25pt}
59 \@date \par
Fred Drake2a3ab4f1998-04-28 18:31:50 +000060 \py@authoraddress \par
Fred Drakedbe132c1998-03-06 21:21:56 +000061 \end{flushright}
62 \@thanks
63 \setcounter{footnote}{0}
64 \let\thanks\relax\let\maketitle\relax
65 \gdef\@thanks{}\gdef\@author{}\gdef\@title{}
66}
67
68
Fred Drake2a3ab4f1998-04-28 18:31:50 +000069\let\py@OldTableofcontents=\tableofcontents
Fred Drakedbe132c1998-03-06 21:21:56 +000070\renewcommand{\tableofcontents}{
71 \begingroup
72 \parskip = 0mm
Fred Drake2a3ab4f1998-04-28 18:31:50 +000073 \py@OldTableofcontents
Fred Drakedbe132c1998-03-06 21:21:56 +000074 \endgroup
Fred Drake2a3ab4f1998-04-28 18:31:50 +000075 \py@doHorizontalRule
Fred Drakedbe132c1998-03-06 21:21:56 +000076 \vspace{12pt}
Fred Drake2a3ab4f1998-04-28 18:31:50 +000077 \py@doing@page@targetstrue
Fred Drakedbe132c1998-03-06 21:21:56 +000078}
79
Fred Draked579ed81998-04-17 02:45:41 +000080% Fix the theindex environment to add an entry to the Table of
81% Contents; this is much nicer than just having to jump to the end of
82% the book and flip around, especially with multiple indexes.
83%
Fred Drake2a3ab4f1998-04-28 18:31:50 +000084\let\py@OldTheindex=\theindex
Fred Draked579ed81998-04-17 02:45:41 +000085\renewcommand{\theindex}{
86 \clearpage
Fred Drake2a3ab4f1998-04-28 18:31:50 +000087 \py@OldTheindex
Fred Draked579ed81998-04-17 02:45:41 +000088 \addcontentsline{toc}{section}{\indexname}
89}
90
Fred Drakedbe132c1998-03-06 21:21:56 +000091\@ifundefined{fancyhf}{
92 \pagestyle{plain}}{
93 \pagestyle{normal}} % start this way; change for
94\pagenumbering{arabic} % ToC & chapters
95\setcounter{secnumdepth}{2}
96
97\thispagestyle{empty}