Fred Drake | ee9306b | 1998-08-11 17:59:07 +0000 | [diff] [blame^] | 1 | \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 |
| 25 | Big Python is a special version of Python for users who require larger |
| 26 | keys on their keyboards. It accomodates their special needs by ... |
| 27 | |
| 28 | \end{abstract} |
| 29 | |
| 30 | \tableofcontents |
| 31 | |
| 32 | |
| 33 | \chapter{...} |
| 34 | |
| 35 | My chapter. |
| 36 | |
| 37 | |
| 38 | \appendix |
| 39 | \chapter{...} |
| 40 | |
| 41 | My appendix. |
| 42 | |
| 43 | The \code{\e appendix} markup need not be repeated for additional |
| 44 | appendices. |
| 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} |