1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
\documentclass[letterpaper]{book}
% Try to fill up the page!
% This was from another example - we will ignore it for now
\normalsize
\setlength{\topmargin}{0in}
\setlength{\oddsidemargin}{1in}
\setlength{\evensidemargin}{.05in}
\setlength{\marginparwidth}{0in}
\addtolength{\textheight}{1in}
\addtolength{\textwidth}{.7in}
% \code is a piece of code
%\newcommand{\code}{\texttt}
\def\code#1{\texttt{#1}}
% \V is V
\newcommand{\V}{\emph{\textbf{V}}}
\newcommand{\rta}{->}
% special math chars I need: -> ~ ^
\newcommand{\tild}{\~{ }}
% \Class is used to start a new class description at page begin
%----old \newcommand{\Class}[1]{\newpage \markboth{#1}{#1} \section* {#1}}
\newcommand{\Class}[1]{\section {#1}}
%\Indextt for tt index
\newcommand{\Indextt}[1]{\index{#1@\texttt{#1}}}
% \Meth is for a method
\newcommand{\Meth}[1]{\subsubsection* {#1}}
% \Cmd is for a dialog command
\newcommand{\Cmd}[1]{\subsubsection* {#1}}
% \Param is a parameter description
\newcommand{\Param}[1]{\subparagraph {#1}}
% kill off the figfont
\newcommand{\SetFigFont}[3]{}%
% \Sect is used to set typeface of chapter and section titles
\newcommand{\Sect}[1]{\emph{#1}}
% Method environment that allows parameters to be entered with
% the \Param command between the \begin and \end.
\newenvironment{Method}[1]{\Meth{#1}
\begin{description}
\begin{description}}
{\end{description}
\end{description}}
% An environment for a definition
\newenvironment{Def}[1]{\begin{description} \item[#1]}{\end{description}}
\newenvironment{Point}{\begin{itemize} \item }{\end{itemize}}
% Macros for html
%
% First, the LatexVersion
\def\texhtm#1#2{#1}
\def\href#1#2{[#1] - #2}
\def\htm#1{}
%%tth:\def\texhtm#1#2{#2}
%%tth:\def\href#1#2{\special{html:<a href="#1">}{#2}\special{html:</a>}}
%%tth:\def\htm#1{\special{html:#1}}
\usepackage{graphics}
%==========================================================================
\begin{document}
\href{wvrefman.htm}{[Table of Contents]}
\href{wvtools.htm}{[Previous Chapter]}
\href{wvclassh.htm}{[Next Chapter]}
\href{http://www.objectcentral.com}{[Object Central Home]}
\textbf{\input{vvers.tex}}
Copyright \copyright 1998, Bruce E. Wampler
\htm{<HR>}
\appendix
\setcounter{chapter}{4}
\input{release.tex}
\htm{<HR>}
\href{wvrefman.htm}{[Table of Contents]}
\href{wvtools.htm}{[Previous Chapter]}
\href{wvclassh.htm}{[Next Chapter]}
\href{http://www.objectcentral.com}{[Object Central Home]}
\end{document}
|