template.tex 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. % Use the report class, and include the IEEE titlepage style for correct styling
  2. \documentclass[10pt,letter]{report}
  3. \usepackage{IEEEtitlepage}
  4. % Define properties of the document
  5. \title{Document Title}
  6. \subtitle{Subtitle here}
  7. \author{First Author, Second Author}
  8. \company{UNL}
  9. \summary{This is the summary.}
  10. \date{\today}
  11. \version{1.0}
  12. % Setup hyperref. Make sure to change the fields as needed
  13. \usepackage{hyperref}
  14. \hypersetup{
  15. pdfauthor={First Author, Second Author},
  16. pdftitle={Title: Subtitle},
  17. pdfsubject={Subject of Project},
  18. pdflang={English},
  19. pdfkeywords={keywords,comma,seperated}}
  20. % Include a couple of packages for graphic and figures
  21. \usepackage{graphics}
  22. \usepackage{graphicx}
  23. \usepackage{morefloats}
  24. \usepackage{tabularx}
  25. % Change margins to 0.75 inches
  26. \usepackage[margin=0.75in]{geometry}
  27. % Use natbib for bibliographic reference
  28. \usepackage{natbib}
  29. \bibliographystyle{plainnat}
  30. % Provide a bibliography file. Edit as needed.
  31. % See https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management for more information.
  32. \usepackage{filecontents}
  33. \begin{filecontents}{bibliography.bib}
  34. @book{diller1993,
  35. author = {Diller, Antoni},
  36. title = {{LaTeX} Line by Line: Tips and Techniques or Document Processing},
  37. publisher = {John Wiley \& Sons},
  38. year = {1993}
  39. }
  40. @book{knuth1973,
  41. author = {Knuth, Donald E},
  42. title = {The Art of Computer Programming},
  43. publisher = {Addison-Wesley Publishing Company},
  44. year = {1973}
  45. }
  46. @book{kopka2003,
  47. author = {Helmut Kopka and Patrick W Daily},
  48. title = {Guide to {LaTeX}},
  49. publisher = {Addison-Wesley Profesional},
  50. year = {2013}
  51. }
  52. @book{raymond2003,
  53. author = {Eric S Raymond},
  54. title = {The Art of UNIX Programming},
  55. publisher = {Addison-Wesley},
  56. year = {2003}
  57. }
  58. @book{ritchie1988,
  59. author = {Ritchie, Dennis M and Brian W Kernighan},
  60. title = {The C Programming Language},
  61. publisher = {Prentice Hall},
  62. year = {1988}
  63. }
  64. \end{filecontents}
  65. \begin{document}
  66. \maketitle
  67. \chapter*{Revision History}
  68. \label{sec:revisions}
  69. \addcontentsline{toc}{chapter}{Revision History}
  70. \begin{table}[h]
  71. \centering
  72. \begin{tabular}{c|c|c|r}
  73. \textbf{Version} & \textbf{Changes} & \textbf{Author} & \textbf{Date}\\
  74. \hline\hline
  75. 1.0& The initial design document structure.&Your Name& YYYY-MM-DD\\
  76. &&&\\
  77. \hline
  78. \end{tabular}
  79. \caption{Revision History}
  80. \label{tab:rev-hist}
  81. \end{table}
  82. \newpage
  83. % Table of Contents
  84. \tableofcontents
  85. \newpage
  86. % Optional List of Figures
  87. % \listoffigures
  88. % \newpage
  89. % Optional List of Tables
  90. % \listoftables
  91. % \newpage
  92. \chapter{Introduction}
  93. \label{sec:introduction}
  94. \section{Purpose of this Document}
  95. \label{sec:purp-this-docum}
  96. \section{Scope of the Project}
  97. \label{sec:scope-project}
  98. \section{Definitions, Acronyms and Abbreviations}
  99. \label{sec:defin-acronyms-abbr}
  100. \subsection{Definitions}
  101. \label{sec:definitions}
  102. \subsection{Abbreviations and Acronyms}
  103. \label{sec:abbr-acronyms}
  104. \chapter{Overall Design Description}
  105. \label{sec:over-design-descr}
  106. \section{Alternative Design Options}
  107. \label{sec:altern-design-opti}
  108. \chapter{Detailed Component Description}
  109. \label{sec:deta-comp-descr}
  110. \section{Database Design}
  111. \label{sec:database-design}
  112. \subsection{Component Testing Strategy}
  113. \label{sec:db-comp-test-strat}
  114. \section{Class/Entity Model}
  115. \label{sec:classentity-model}
  116. \subsection{Component Testing Strategy}
  117. \label{sec:cem-comp-test-strat}
  118. \section{Database Interface}
  119. \label{sec:database-interface}
  120. \subsection{Component Testing Strategy}
  121. \label{sec:dbint-comp-test-strat}
  122. \section{Design and Integration of Data Structures}
  123. \label{sec:design-integr-data}
  124. \subsection{Component Testing Strategy}
  125. \label{sec:dids-comp-test-strat}
  126. \section{Changes and Refactoring}
  127. \label{sec:changes-refactoring}
  128. \chapter{Additional Material}
  129. \label{sec:additional-material}
  130. % Include the bibliography
  131. \nocite{*} % Comment this line out if you don't want all of your bibliography entries in the final document.
  132. \bibliography{bibliography} % Comment this line out if you don't have a bibliography.
  133. \end{document}
  134. %%% Local Variables:
  135. %%% mode: latex
  136. %%% TeX-master: t
  137. %%% End: