123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- % Use the report class, and include the IEEE titlepage style for correct styling
- \documentclass[10pt,letter]{report}
- \usepackage{IEEEtitlepage}
- % Define properties of the document
- \title{Document Title}
- \subtitle{Subtitle here}
- \author{First Author, Second Author}
- \company{UNL}
- \summary{This is the summary.}
- \date{\today}
- \version{1.0}
- % Setup hyperref. Make sure to change the fields as needed
- \usepackage{hyperref}
- \hypersetup{
- pdfauthor={First Author, Second Author},
- pdftitle={Title: Subtitle},
- pdfsubject={Subject of Project},
- pdflang={English},
- pdfkeywords={keywords,comma,seperated}}
- % Include a couple of packages for graphic and figures
- \usepackage{graphicx}
- \usepackage{morefloats}
- \usepackage{tabularx}
- % Change margins to 0.75 inches
- \usepackage[margin=0.75in]{geometry}
- % Use natbib for bibliographic reference
- \usepackage{natbib}
- \bibliographystyle{plainnat}
- \begin{document}
- \maketitle
- \chapter*{Revision History}
- \label{sec:revisions}
- \addcontentsline{toc}{chapter}{Revision History}
- \begin{table}[h]
- \centering
- \begin{tabularx}{\textwidth}{c|X|c|r}
- \textbf{Version} & \textbf{Changes} & \textbf{Author} & \textbf{Date}\\
- \hline\hline
- 1.0& The initial design document structure.&Your Name& YYYY-MM-DD\\
- &&&\\
- \hline
- \end{tabularx}
- \caption{Revision History}
- \label{tab:rev-hist}
- \end{table}
- \newpage
- % Table of Contents
- \tableofcontents
- \newpage
- % Optional List of Figures
- % \listoffigures
- % \newpage
- % Optional List of Tables
- % \listoftables
- % \newpage
- \chapter{Introduction}
- \label{sec:introduction}
- \section{Purpose of this Document}
- \label{sec:purp-this-docum}
- \section{Scope of the Project}
- \label{sec:scope-project}
- \section{Definitions, Acronyms and Abbreviations}
- \label{sec:defin-acronyms-abbr}
- \subsection{Definitions}
- \label{sec:definitions}
- \subsection{Abbreviations and Acronyms}
- \label{sec:abbr-acronyms}
- \chapter{Overall Design Description}
- \label{sec:over-design-descr}
- \section{Alternative Design Options}
- \label{sec:altern-design-opti}
- \chapter{Detailed Component Description}
- \label{sec:deta-comp-descr}
- \section{Database Design}
- \label{sec:database-design}
- \subsection{Component Testing Strategy}
- \label{sec:db-comp-test-strat}
- \section{Class/Entity Model}
- \label{sec:classentity-model}
- \subsection{Component Testing Strategy}
- \label{sec:cem-comp-test-strat}
- \section{Database Interface}
- \label{sec:database-interface}
- \subsection{Component Testing Strategy}
- \label{sec:dbint-comp-test-strat}
- \section{Design and Integration of Data Structures}
- \label{sec:design-integr-data}
- \subsection{Component Testing Strategy}
- \label{sec:dids-comp-test-strat}
- \section{Changes and Refactoring}
- \label{sec:changes-refactoring}
- \chapter{Additional Material}
- \label{sec:additional-material}
- % Include the bibliography
- \nocite{*} % Comment this line out if you don't want all of your bibliography entries in the final document.
- \bibliography{bibliography} % Comment this line out if you don't have a bibliography.
- \end{document}
- %%% Local Variables:
- %%% mode: latex
- %%% TeX-master: t
- %%% End:
|