blob: 905871d93765de9fcb575cdadf3c0aeb5c852303 [file] [log] [blame]
Fred Drakeee9306b1998-08-11 17:59:07 +00001\documentclass{manual}
2
3\title{Big Python Manual}
4
5\input{boilerplate}
6
7\makeindex % tell \index to actually write the .idx file
8\makemodindex % If this contains a lot of module sections.
9
10
11\begin{document}
12
13\maketitle
14
15% This makes the contents more accessible from the front page of the HTML.
16\ifhtml
17\chapter*{Front Matter\label{front}}
18\fi
19
20%\input{copyright}
21
22\begin{abstract}
23
24\noindent
25Big Python is a special version of Python for users who require larger
26keys on their keyboards. It accomodates their special needs by ...
27
28\end{abstract}
29
30\tableofcontents
31
32
33\chapter{...}
34
35My chapter.
36
37
38\appendix
39\chapter{...}
40
41My appendix.
42
43The \code{\e appendix} markup need not be repeated for additional
44appendices.
45
46
47%
48% The ugly "%begin{latexonly}" pseudo-environments are really just to
49% keep LaTeX2HTML quiet during the \renewcommand{} macros; they're
50% not really valuable.
51%
52% If you don't want the Module Index, you can remove all of this up
53% until the second \input line.
54%
55%begin{latexonly}
56\renewcommand{\indexname}{Module Index}
57%end{latexonly}
58\input{mod\jobname.ind} % Module Index
59
60%begin{latexonly}
61\renewcommand{\indexname}{Index}
62%end{latexonly}
63\input{\jobname.ind} % Index
64
65\end{document}