summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-08-11 17:59:07 (GMT)
committerFred Drake <fdrake@acm.org>1998-08-11 17:59:07 (GMT)
commitee9306b610f0a90c2f35e72c6e8f11d63aae6db3 (patch)
tree7e97d13a27737724066d25d0c3e210ffa739f7ef /Doc
parent549cb6ea030d257c6e037f8f55be1a7656396d15 (diff)
downloadcpython-ee9306b610f0a90c2f35e72c6e8f11d63aae6db3.zip
cpython-ee9306b610f0a90c2f35e72c6e8f11d63aae6db3.tar.gz
cpython-ee9306b610f0a90c2f35e72c6e8f11d63aae6db3.tar.bz2
Template file for \documentclass{manual}.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/templates/manual.tex65
1 files changed, 65 insertions, 0 deletions
diff --git a/Doc/templates/manual.tex b/Doc/templates/manual.tex
new file mode 100644
index 0000000..905871d
--- /dev/null
+++ b/Doc/templates/manual.tex
@@ -0,0 +1,65 @@
+\documentclass{manual}
+
+\title{Big Python Manual}
+
+\input{boilerplate}
+
+\makeindex % tell \index to actually write the .idx file
+\makemodindex % If this contains a lot of module sections.
+
+
+\begin{document}
+
+\maketitle
+
+% This makes the contents more accessible from the front page of the HTML.
+\ifhtml
+\chapter*{Front Matter\label{front}}
+\fi
+
+%\input{copyright}
+
+\begin{abstract}
+
+\noindent
+Big Python is a special version of Python for users who require larger
+keys on their keyboards. It accomodates their special needs by ...
+
+\end{abstract}
+
+\tableofcontents
+
+
+\chapter{...}
+
+My chapter.
+
+
+\appendix
+\chapter{...}
+
+My appendix.
+
+The \code{\e appendix} markup need not be repeated for additional
+appendices.
+
+
+%
+% The ugly "%begin{latexonly}" pseudo-environments are really just to
+% keep LaTeX2HTML quiet during the \renewcommand{} macros; they're
+% not really valuable.
+%
+% If you don't want the Module Index, you can remove all of this up
+% until the second \input line.
+%
+%begin{latexonly}
+\renewcommand{\indexname}{Module Index}
+%end{latexonly}
+\input{mod\jobname.ind} % Module Index
+
+%begin{latexonly}
+\renewcommand{\indexname}{Index}
+%end{latexonly}
+\input{\jobname.ind} % Index
+
+\end{document}