Also removed the latex2html style files so that there are no incompatibility issues in the future.
97 lines
1.8 KiB
TeX
97 lines
1.8 KiB
TeX
\documentclass[11pt]{book}
|
|
|
|
\usepackage{html}
|
|
\usepackage{hypre}
|
|
\usepackage{makeidx}
|
|
\usepackage{graphicx}
|
|
|
|
%=============================================================================
|
|
% Preamble:
|
|
%=============================================================================
|
|
|
|
% set margins
|
|
\setlength{\oddsidemargin}{0in}
|
|
\setlength{\evensidemargin}{0in}
|
|
\setlength{\textwidth}{6.5in}
|
|
\setlength{\topmargin}{0in}
|
|
\setlength{\textheight}{8.0in}
|
|
|
|
% define various commands and macros
|
|
|
|
% define the version number
|
|
% NOTE: this is automatically generated from another file in hypre
|
|
\input{version}
|
|
|
|
% write out the index entries in the `.idx' file
|
|
\makeindex
|
|
|
|
%=============================================================================
|
|
% Body:
|
|
%=============================================================================
|
|
|
|
\begin{document}
|
|
|
|
%=============== Title Page
|
|
|
|
\begin{TitlePage}
|
|
|
|
\Title{Developer's Manual}
|
|
\SubTitle{%
|
|
Software Version: \HYPREVersion\\
|
|
Date: \HYPREVersionDate}
|
|
\vfill
|
|
\begin{center}
|
|
\InsertGraphics{hypre_wiw}{width=.7\textwidth}
|
|
\end{center}
|
|
\vfill
|
|
\Author{%
|
|
Center for Applied Scientific Computing\\
|
|
Lawrence Livermore National Laboratory
|
|
}
|
|
|
|
\end{TitlePage}
|
|
|
|
%=============== Copyright Page
|
|
|
|
\begin{CopyrightPage}
|
|
\input{copyright}
|
|
\end{CopyrightPage}
|
|
|
|
%=============== Table of Contents
|
|
|
|
\pagenumbering{roman}
|
|
\tableofcontents
|
|
\cleardoublepage
|
|
\pagenumbering{arabic}
|
|
|
|
%=============== Include Chapters
|
|
|
|
\input{dev_requirements}
|
|
\input{dev_design}
|
|
\input{dev_scm}
|
|
\input{dev_error_handling}
|
|
\input{dev_makefile}
|
|
\input{dev_documentation}
|
|
\input{dev_coding}
|
|
\input{dev_language_interop}
|
|
\input{dev_autotest}
|
|
\input{dev_QA}
|
|
\input{dev_install}
|
|
|
|
%=============== Include Other
|
|
|
|
% \input{glossary}
|
|
|
|
%=============== Print the References here
|
|
|
|
\bibliographystyle{plain}
|
|
%\bibliography{hypre}
|
|
|
|
%=============== Print the Index here
|
|
|
|
\printindex
|
|
|
|
\end{document}
|
|
|
|
|