62 lines
1.4 KiB
TeX
62 lines
1.4 KiB
TeX
\documentclass[a4paper,headings=small,11pt,oneside,bibliography=totoc]{scrreprt}
|
|
\addtokomafont{disposition}{\sffamily}
|
|
\renewcommand\familydefault{\sfdefault}
|
|
\usepackage[utf8x]{inputenc}
|
|
\usepackage[english]{babel}
|
|
\usepackage{amssymb}
|
|
\usepackage{amsthm}
|
|
\usepackage{amsmath}
|
|
\usepackage[dvipsnames]{xcolor}
|
|
\usepackage{graphicx}
|
|
\usepackage{pdfpages}
|
|
\usepackage{microtype}
|
|
\usepackage{palatino}
|
|
\usepackage[round,colon]{natbib}
|
|
\usepackage[hidelinks]{hyperref}
|
|
\usepackage[titletoc]{appendix}
|
|
\pagestyle{headings}
|
|
\usepackage{parskip}
|
|
\usepackage{listings}
|
|
% From http://tex.stackexchange.com/questions/121601/ddg#121618
|
|
\lstset{
|
|
basicstyle=\small\ttfamily,
|
|
columns=flexible,
|
|
breaklines=true
|
|
}
|
|
|
|
\newcommand{\comments}[1]{\textcolor{OliveGreen}{[\emph{#1}]}}
|
|
|
|
\newcommand{\reporttype}{Final Report}
|
|
|
|
% % Fill out the following information to customize your title page
|
|
\title{Report Title}
|
|
\author{Name}
|
|
|
|
% % Uncomment one of the following lines according to your degree title
|
|
\newcommand{\degreetitle}{BSc}
|
|
%\newcommand{\degreetitle}{BSc Ordinary}
|
|
%\newcommand{\degreetitle}{MEng}
|
|
|
|
% % Fill your degree programme name here
|
|
\newcommand{\progname}{Degree Program}
|
|
|
|
% % Fill in your word count here
|
|
\newcommand{\wordcount}{XYZW}
|
|
|
|
\begin{document}
|
|
|
|
\input{title_page/page}
|
|
|
|
\clearpage
|
|
|
|
\tableofcontents
|
|
|
|
\input{chapters/1-introduction}
|
|
\input{chapters/2-example}
|
|
|
|
\input{chapters/7-appendix}
|
|
|
|
\bibliographystyle{hull}
|
|
\bibliography{report}
|
|
|
|
\end{document}
|