Advertisement
Guest User

List of Figures

a guest
Jun 28th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.72 KB | None | 0 0
  1. \documentclass[11pt, twoside, a4paper]{report}
  2. \usepackage[inner = 30mm, outer = 20mm,  top = 30mm, bottom = 20mm, headheight = 13.6pt]{geometry}
  3. \usepackage{emptypage}
  4. \usepackage[toc,page]{appendix}
  5. \usepackage{tikz}
  6. \usepackage[pdfpagelayout=TwoPageRight]{hyperref}
  7. \usepackage{multicol}
  8. \usepackage{apacite}
  9. \usepackage{textcomp}
  10. \usepackage{adjustbox}
  11. \hypersetup{colorlinks=true, linktoc=all, allcolors=green!30!black,}
  12. \usepackage{booktabs, siunitx, caption}
  13. \usepackage{amsmath}
  14. \usepackage{graphicx}
  15. \usepackage{slashbox}
  16.  
  17. \usepackage{array}
  18. \newlength\tbspace
  19. \setlength\tbspace{3cm}
  20. \newcolumntype{L}{l<{\hspace{\tbspace}}}
  21.  
  22. \usepackage{wrapfig}
  23. \graphicspath{ {./Figures/} }
  24. \usepackage{gensymb}
  25. \usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
  26. \makeatletter
  27. \patchcmd{\@makechapterhead}{\vspace*{50\p@}}{}{}{}% Removes space above \chapter head
  28. \patchcmd{\@makeschapterhead}{\vspace*{50\p@}}{}{}{}% Removes space above \chapter* head
  29. \makeatother
  30. \usepackage{pgfplots}
  31. \pgfplotsset{compat=1.11,
  32.     /pgfplots/ybar legend/.style={
  33.         /pgfplots/legend image code/.code={%
  34.             \draw[##1,/tikz/.cd,yshift=-0.25em]
  35.             (0cm,0cm) rectangle (3pt,0.8em);},},}
  36. \usetikzlibrary{arrows}
  37. \usepackage{tcolorbox}
  38. \usepackage{fancyhdr}
  39. \usepackage{layouts}
  40. %\usepackage{showframe}
  41. \fancyfoot{}
  42. \fancyhead{}
  43. \fancyfoot[LE]{\thepage}
  44. \fancyfoot[RO]{\thepage}
  45. \fancyhead[LE]{\nouppercase{\leftmark}}
  46. \fancyhead[RO]{\nouppercase{\rightmark}}
  47. \pagestyle{fancy}
  48.  
  49. % Redefine the plain page style so chapter pages match my footer preference
  50. \fancypagestyle{plain}{%
  51.     \fancyhf{}%
  52.     \fancyfoot[LE]{\thepage}
  53.     \fancyfoot[RO]{\thepage}
  54.     \renewcommand{\headrulewidth}{0pt}% Line at the header invisible
  55.     \renewcommand{\footrulewidth}{0pt}% Line at the footer visible
  56. }
  57.  
  58.  
  59.  
  60. \begin{document}
  61. \pagenumbering{Alph}
  62. \begin{titlepage}
  63. things that go on the title page
  64. \end{titlepage}
  65.  
  66. \cleardoublepage
  67. \pagenumbering{roman}
  68.  
  69.  
  70. \chapter*{Abstract}\label{ch:Abstract}
  71. \addcontentsline{toc}{chapter}{Abstract}
  72. \textcolor{red}{Course guide: "Add a summary or abstract to the thesis, of approximately 400 words."}
  73. \\
  74. \\
  75. \\
  76. {\let\clearpage\relax\chapter*{Acknowledgements / Preface}}\label{ch:Acknowledgements}
  77. \addcontentsline{toc}{chapter}{Acknowledgements}
  78.  
  79. \tableofcontents
  80.  
  81. %\listoftables
  82. %\addcontentsline{toc}{chapter}{List of tables}
  83.  
  84. \listoffigures
  85. \addcontentsline{toc}{chapter}{List of figures}
  86.  
  87.  
  88. \chapter*{List of abbreviations}\label{ch:list of abbrev}
  89. \addcontentsline{toc}{chapter}{List of abbreviations}
  90.  
  91.     \begin{tabular}{l l}
  92.         GHI  & Global Horizontal Irradiance          \\
  93.         etc. & more
  94.     \end{tabular}
  95.  
  96.  
  97.  
  98.  
  99.  
  100. \cleardoublepage
  101. \pagenumbering{arabic}
  102.  
  103. \chapter{Introduction}\label{ch:Introduction}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement