Automata and Logic Engineering Report template for Fontys
Forfatter
Georgiana Manolache
Sidst opdateret
5 år siden
Licens
Creative Commons CC BY 4.0
Resumé
LaTeX Automata and Logic Engineering report template
LaTeX Automata and Logic Engineering report template
%
% Fontys ALE Report Style template for LaTeX
%
% Public version 1.0
% 2020 Georgiana Manolache
%
% THIS IS THE MAIN FILE (i.e. compile this file, compiling the others directly won't work)
%
\documentclass[a4paper,10pt,twoside]{report}
%all the other includes etc. are done in the thesis.sty file.
\usepackage{report}
%
% These commands need to be defined in order to produce a correct and personalized document
%
\newcommand{\shortdoctitle}{ALE1/ALE2 Report}
\newcommand{\doctitle}{Automata and Logic Engineering 1/2}
\newcommand{\docsubtitle}{ALE1/ALE2 Report}
\newcommand{\me}{My Name}
% \newcommand{\keywords}{keyword1, keyword2, keyword3}
\newcommand{\version}{EMPTY version}
\newcommand{\monthYear}{Month 202X}
%If you use this template as a graduation internship report, be sure to use all the titles for your committee members!!! (their names show up on the very first page!)
% \newcommand{\firstCommitteeMember}{Your First Committee Member}
% \newcommand{\secondCommitteeMember}{Your second Committee Member, usually the daily supervisor}
% \newcommand{\thirdCommitteeMember}{Your Third Committee Member, usually the external member}
\author{\me}
\begin{document}
%use this include for PDF and distribution versions
\pagenumbering{roman}
\include{titlepage}
\normalsize
\clearemptydoublepage
\chapter*{Abstract}\label{chapter:abstract}
\input{chapters/abstract}
\clearemptydoublepage
\chapter*{Preface}\label{chapter:preface}
\input{chapters/preface}
\clearemptydoublepage
\tableofcontents
\clearemptydoublepage
\listoffigures
\clearemptydoublepage
% Uncomment if applicable
% \listoftables
%\clearemptydoublepage
\chapter{Introduction}\label{chapter:introduction}
\setcounter{page}{0}
\pagenumbering{arabic}
%from here on, start the 'real' page numbering, from 1, with normal digits
\input{chapters/introduction}
\clearemptydoublepage
\chapter{Parse \& Tree}\label{chapter:parse_tree}
\input{chapters/parse_tree}
\clearemptydoublepage
\chapter{Truth table \& Hash code}\label{chapter:truth_table_hash_code}
\input{chapters/truth_table_hash_code}
\clearemptydoublepage
\chapter{Simplify}\label{chapter:simplify}
\input{chapters/simplify}
\clearemptydoublepage
\chapter{Normalize}\label{chapter:normalize}
\input{chapters/normalize}
\chapter{Nandify}\label{chapter:nandify}
\input{chapters/nandify}
\clearemptydoublepage
\chapter{Software design}\label{chapter:software_design}
\input{chapters/software_design}
\clearemptydoublepage
\chapter{GUI}\label{chapter:gui}
\input{chapters/gui}
\clearemptydoublepage
\chapter{Testing}\label{chapter:testing}
\input{chapters/testing}
\clearemptydoublepage
\chapter{Conclusions and future recommendations}\label{chapter:conclusions}
\input{chapters/conclusions}
\clearemptydoublepage
%Choose a good bibliography style, plain would do often, but these might be nice too
%\bibliographystyle{these}
\bibliographystyle{apacite}
\bibliography{references}
%Uncomment and add files if
%\clearemptydoublepage
% \appendix
% \addcontentsline{toc}{chapter}{Appendix}
% \input{appendices/main}
\end{document}