Added 'list_only' option (and modified 'run()' to respect it).
[python/dscho.git] / Doc / templates / manual.tex
bloba8c8ec2109808965440ca387984c98d7c7c094ac
1 \documentclass{manual}
3 \title{Big Python Manual}
5 \author{Your Name Here}
7 % Please at least include a long-lived email address;
8 % the rest is at your discretion.
9 \authoraddress{
10 Organization name, if applicable \\
11 Street address, if you want to use it \\
12 E-mail: \email{your-email@your.domain}
15 \date{April 30, 1999} % update before release!
16 % Use an explicit date so that reformatting
17 % doesn't cause a new date to be used. Setting
18 % the date to \today can be used during draft
19 % stages to make it easier to handle versions.
21 \release{x.y} % release version; this is used to define the
22 % \version macro
24 \makeindex % tell \index to actually write the .idx file
25 \makemodindex % If this contains a lot of module sections.
28 \begin{document}
30 \maketitle
32 % This makes the contents more accessible from the front page of the HTML.
33 \ifhtml
34 \chapter*{Front Matter\label{front}}
35 \fi
37 %\input{copyright}
39 \begin{abstract}
41 \noindent
42 Big Python is a special version of Python for users who require larger
43 keys on their keyboards. It accomodates their special needs by ...
45 \end{abstract}
47 \tableofcontents
50 \chapter{...}
52 My chapter.
55 \appendix
56 \chapter{...}
58 My appendix.
60 The \code{\e appendix} markup need not be repeated for additional
61 appendices.
65 % The ugly "%begin{latexonly}" pseudo-environments are really just to
66 % keep LaTeX2HTML quiet during the \renewcommand{} macros; they're
67 % not really valuable.
69 % If you don't want the Module Index, you can remove all of this up
70 % until the second \input line.
72 %begin{latexonly}
73 \renewcommand{\indexname}{Module Index}
74 %end{latexonly}
75 \input{mod\jobname.ind} % Module Index
77 %begin{latexonly}
78 \renewcommand{\indexname}{Index}
79 %end{latexonly}
80 \input{\jobname.ind} % Index
82 \end{document}