Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 3.13 KB | None | 0 0
  1. \documentclass[a4paper,12pt,oneside,table]{report}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage[british]{babel}
  4. \usepackage{float}
  5. \usepackage{graphicx}
  6. \usepackage[hidelinks]{hyperref}
  7. \usepackage[acronyms,toc]{glossaries}
  8. \usepackage{nameref}
  9. \usepackage{verbatim}
  10. \usepackage{pgfplots}
  11. \usepackage{footnote}
  12. \usepackage{multirow}
  13. \usepackage{multicol}
  14. \usepackage[yyyymmdd]{datetime}
  15. \usepackage{geometry}
  16. \usepackage{todonotes}
  17. \usepackage{epigraph}
  18. \usepackage{csquotes}
  19. \usepackage{pdfpages}
  20. \usepackage{breqn}
  21. \usepackage{amsmath}
  22. \usepackage{amssymb}
  23. \usepackage{mathtools}
  24. \usepackage{caption}
  25. \usepackage{listings}
  26. \usepackage{framed}
  27. %\usepackage[table]{xcolor}
  28. \usepackage{lmodern}
  29. \usepackage{wrapfig}
  30. \usepackage{assets/stinger}
  31. \usepackage{assets/lstset}
  32.  
  33. \graphicspath{ {images/} }
  34. %\setlength\parindent{0pt}
  35.  
  36. \definecolor{shadecolor}{rgb}{.9, .9, .9}
  37.  
  38. \DeclareMathSizes{12}{10}{8}{7}
  39. \newlength\longest
  40. \newcommand{\keyword}[1]{\lstinline[mathescape=false]{#1}}
  41.  
  42. \usepackage[backend=bibtex,style=ieee,uniquelist=false,mincitenames=1,
  43.    maxcitenames=2]{biblatex}
  44. \bibliography{literature}
  45. \bibliography{online}
  46. \setcounter{secnumdepth}{3}
  47.  
  48. \makeglossaries
  49. \input{glossary}
  50. \input{abbreviations}
  51. \setacronymstyle{long-short}
  52.  
  53.  
  54. \protected\def\ignorethis#1\endignorethis{}
  55. \let\endignorethis\relax
  56. \def\TOCstop{\addtocontents{toc}{\ignorethis}}
  57. \def\TOCstart{\addtocontents{toc}{\endignorethis}}
  58.  
  59. \usepackage{titlesec}
  60. \titleclass{\chapter}{top}
  61. \titleformat{\chapter}[hang]{\LARGE\bfseries}{\thechapter\hspace{20pt}
  62. {\textbar}\hspace{20pt}}{0pt}{\LARGE\bfseries}
  63.  
  64. \newcommand{\fass}{:=}
  65. \newcommand{\var}[1]{\mathtt{#1}}
  66. \newcommand{\dualcite}[1]{\citeauthor{#1}\autocite{#1}}
  67. \renewcommand{\lstlistlistingname}{List of \lstlistingname s}
  68.  
  69.  
  70.  
  71.  
  72. \title{\Huge Verifying Java Programs in Eclipse using Coq}
  73.  
  74. \author{Henningsen, Kasper Stig\\ \texttt{ksti@itu.dk} \and
  75. Hinrichsen, Jonas Kastberg\\ \texttt{jkas@itu.dk} \and
  76. Malone, Simon Oliver\\ \texttt{soma@itu.dk}}
  77.  
  78. \begin{document}
  79. \pagenumbering{gobble}
  80. \includepdf{frontpage}
  81. \pagenumbering{roman}
  82. \maketitle
  83.  
  84. \input{abstract}
  85.  
  86. \glsresetall
  87.  
  88. \tableofcontents
  89.  
  90. \listoffigures
  91. \begingroup
  92. \let\clearpage\relax
  93. \listoftables
  94. \lstlistoflistings
  95. \endgroup
  96.  
  97. \clearpage
  98.  
  99. \pagenumbering{arabic}
  100. %\todo[inline]{Math size back to normal? Yay or nay?}
  101. \chapter{Introduction}
  102.  
  103. \input{introduction}
  104.  
  105. \chapter{Background and Analysis}
  106.  
  107. \input{background}
  108.  
  109. \chapter{Proposed Solution}
  110.  
  111. \input{proposed_solution}
  112.  
  113. \chapter{Usage}
  114.  
  115. \input{usage}
  116.  
  117. \chapter{Discussion}
  118.  
  119. \input{discussion}
  120.  
  121. %\chapter{Reflections}
  122.  
  123. %\input{reflections}
  124.  
  125. \chapter{Conclusion}
  126.  
  127. \input{conclusion}
  128.  
  129. %\begingroup
  130. %\renewcommand{\clearpage}{}
  131. %\endgroup
  132.  
  133. %\begingroup
  134. %\renewcommand{\clearpage}{}
  135. %\endgroup
  136.  
  137. %\begingroup
  138. %\renewcommand{\clearpage}{}
  139. %\endgroup
  140.  
  141. \clearpage
  142. \pagenumbering{roman}
  143. \appendix
  144.  
  145. \printglossary[type=\acronymtype]
  146.  
  147. \printglossary[title=Glossary]
  148.  
  149. \printbibliography[title={References},nottype=misc]
  150. \printbibliography[title={Online references},type=misc]
  151.  
  152. \newpage
  153.  
  154. \input{appendix}
  155.  
  156. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement