Fred Drake | ee9306b | 1998-08-11 17:59:07 +0000 | [diff] [blame] | 1 | \documentclass{manual} |
| 2 | |
| 3 | \title{Big Python Manual} |
| 4 | |
Fred Drake | 4f52867 | 1999-05-17 16:02:38 +0000 | [diff] [blame] | 5 | \author{Your Name Here} |
| 6 | |
| 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} |
| 13 | } |
| 14 | |
| 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. |
| 20 | |
| 21 | \release{x.y} % release version; this is used to define the |
| 22 | % \version macro |
Fred Drake | ee9306b | 1998-08-11 17:59:07 +0000 | [diff] [blame] | 23 | |
| 24 | \makeindex % tell \index to actually write the .idx file |
| 25 | \makemodindex % If this contains a lot of module sections. |
| 26 | |
| 27 | |
| 28 | \begin{document} |
| 29 | |
| 30 | \maketitle |
| 31 | |
| 32 | % This makes the contents more accessible from the front page of the HTML. |
| 33 | \ifhtml |
| 34 | \chapter*{Front Matter\label{front}} |
| 35 | \fi |
| 36 | |
| 37 | %\input{copyright} |
| 38 | |
| 39 | \begin{abstract} |
| 40 | |
| 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 ... |
| 44 | |
| 45 | \end{abstract} |
| 46 | |
| 47 | \tableofcontents |
| 48 | |
| 49 | |
| 50 | \chapter{...} |
| 51 | |
| 52 | My chapter. |
| 53 | |
| 54 | |
| 55 | \appendix |
| 56 | \chapter{...} |
| 57 | |
| 58 | My appendix. |
| 59 | |
| 60 | The \code{\e appendix} markup need not be repeated for additional |
| 61 | appendices. |
| 62 | |
| 63 | |
| 64 | % |
| 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. |
| 68 | % |
| 69 | % If you don't want the Module Index, you can remove all of this up |
| 70 | % until the second \input line. |
| 71 | % |
| 72 | %begin{latexonly} |
| 73 | \renewcommand{\indexname}{Module Index} |
| 74 | %end{latexonly} |
| 75 | \input{mod\jobname.ind} % Module Index |
| 76 | |
| 77 | %begin{latexonly} |
| 78 | \renewcommand{\indexname}{Index} |
| 79 | %end{latexonly} |
| 80 | \input{\jobname.ind} % Index |
| 81 | |
| 82 | \end{document} |