Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. \documentclass[12pt]{extreport}
  2.  
  3. \setlength{\textwidth}{6.5in}
  4. \setlength{\textheight}{8.5in}
  5. \setlength{\evensidemargin}{0in}
  6. \setlength{\oddsidemargin}{0in}
  7. \setlength{\topmargin}{0in}
  8.  
  9. \setlength{\parindent}{0pt}
  10. \setlength{\parskip}{0.1in}
  11. \usepackage{glossaries}
  12. \usepackage[toc,page]{appendix}
  13. \usepackage{epsf}
  14. \usepackage{amssymb}
  15. \usepackage{amsmath}
  16. \usepackage{latexsym}
  17. \usepackage{color}
  18. \usepackage{listings}
  19. \usepackage{graphicx}
  20. \usepackage{verbatim}
  21. \usepackage{hyperref}
  22. \usepackage{placeins}
  23. \usepackage{multirow}
  24. \usepackage{listings}
  25. \definecolor{mygreen}{RGB}{28,172,0} % color values Red, Green, Blue
  26. \definecolor{mylilas}{RGB}{170,55,241}
  27.  
  28. \let\Oldsection\section
  29. \renewcommand{\section}{\FloatBarrier\Oldsection}
  30.  
  31. \let\Oldsubsection\subsection
  32. \renewcommand{\subsection}{\FloatBarrier\Oldsubsection}
  33.  
  34. \let\Oldsubsubsection\subsubsection
  35. \renewcommand{\subsubsection}{\FloatBarrier\Oldsubsubsection}
  36. \hypersetup{
  37. colorlinks=true,
  38. linkcolor=blue,
  39. urlcolor=red,
  40. filecolor=brown,
  41. citecolor=brown,
  42. }
  43. \usepackage[table,xcdraw]{xcolor}
  44. \newcommand{\hide}[1]{}
  45.  
  46. \definecolor{codegreen}{rgb}{0,0.6,0}
  47. \definecolor{codegray}{rgb}{0.5,0.5,0.5}
  48. \definecolor{codepurple}{rgb}{0.58,0,0.82}
  49. \definecolor{backcolour}{rgb}{0.95,0.95,0.92}
  50.  
  51. \lstdefinestyle{mystyle}{
  52. backgroundcolor=\color{backcolour},
  53. commentstyle=\color{codegreen},
  54. keywordstyle=\color{magenta},
  55. numberstyle=\tiny\color{codegray},
  56. stringstyle=\color{codepurple},
  57. basicstyle=\footnotesize,
  58. breakatwhitespace=false,
  59. breaklines=true,
  60. captionpos=b,
  61. keepspaces=true,
  62. numbers=left,
  63. numbersep=5pt,
  64. showspaces=false,
  65. showstringspaces=false,
  66. showtabs=false,
  67. tabsize=2
  68. }
  69.  
  70. \lstset{style=mystyle}
  71.  
  72. \begin{document}
  73. \thispagestyle{empty}
  74. \begin{center}
  75.  
  76. % TITLE
  77. {\Large
  78. Text
  79. }
  80.  
  81. \vfill
  82.  
  83. Text
  84.  
  85. \vfill
  86.  
  87. Text
  88.  
  89. \vfill
  90.  
  91. Text
  92. \vfill
  93.  
  94. Text
  95. \vfill
  96.  
  97. Text
  98. \vfill
  99.  
  100. Text
  101. \\
  102. Text
  103.  
  104. \end{center}
  105. \chapter*{Academic Abstract}
  106. \input{academicAbstract}
  107. \chapter*{General Audience Abstract}
  108. \input{publicAbstract}
  109. \pagebreak
  110. \pagenumbering{roman}
  111. \setcounter{page}{1}
  112. \clearpage
  113. \thispagestyle{plain}
  114. \par\vspace*{.35\textheight}{\centering Text\par}
  115.  
  116. \chapter*{Acknowledgments}
  117. \input{acknowledgements}
  118. \tableofcontents
  119. \clearpage
  120. \listoffigures
  121. \addcontentsline{toc}{chapter}{List of Figures}
  122. \listoftables
  123. \addcontentsline{toc}{chapter}{List of Tables}
  124. \begin{comment}
  125. \pagebreak
  126. \chapter*{List of Figures}
  127. \input{figList}
  128. \chapter*{Acknowledgments}
  129. \input{tabList}
  130. \end{comment}
  131. \chapter*{List of Abbreviations}
  132. \input{abbr}
  133.  
  134. \pagenumbering{arabic}
  135. \pagestyle{myheadings}
  136.  
  137. \chapter{Text}
  138. \input{introduction}
  139.  
  140. \chapter{Literature Review}
  141. \input{LitReview}
  142.  
  143. \chapter{Methodology}
  144. \input{methods}
  145.  
  146. \chapter{Results}
  147. \input{results}
  148.  
  149. \chapter{Conclusions}
  150. \input{conclusions}
  151.  
  152. % Completed check the index
  153.  
  154.  
  155. % If you are using BibTeX, uncomment the following:
  156. % \thebibliography
  157. %
  158. % Otherwise, uncomment the following:
  159. \bibliographystyle{ieeetr}
  160. \bibliography{citations}
  161. \input{appendixThesis}
  162.  
  163. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement