diff options
author | Aria Shrimpton <me@aria.rip> | 2024-01-25 17:57:01 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-01-25 17:57:01 +0000 |
commit | f876d3e0ee856e5c50e4665f2874d58c06887310 (patch) | |
tree | 83f75ddbb62ccbd9242e7ecf10ea19a5e9f5638f | |
parent | 0868b269471fa045da3f928179c17fca703e7f55 (diff) |
parts / outline
-rw-r--r-- | thesis/main.tex | 21 | ||||
-rw-r--r-- | thesis/parts/analysis.tex | 1 | ||||
-rw-r--r-- | thesis/parts/conclusion.tex | 0 | ||||
-rw-r--r-- | thesis/parts/implementation.tex | 0 | ||||
-rw-r--r-- | thesis/parts/introduction.tex | 3 | ||||
-rw-r--r-- | thesis/parts/methodology.tex | 3 | ||||
-rw-r--r-- | thesis/parts/results.tex | 4 |
7 files changed, 22 insertions, 10 deletions
diff --git a/thesis/main.tex b/thesis/main.tex index 4bcc64a..16066cc 100644 --- a/thesis/main.tex +++ b/thesis/main.tex @@ -5,12 +5,14 @@ \usepackage{ugcheck} \usepackage{microtype} +\usepackage[dvipsnames]{xcolor} \usepackage[style=numeric]{biblatex} \addbibresource{biblio.bib} %% Convenience macros \newcommand{\code}{\texttt} +\newcommand{\todo}[1]{\colorbox{yellow}{#1} \newline} \begin{document} \begin{preliminary} @@ -49,30 +51,29 @@ from the Informatics Research Ethics committee. \end{preliminary} \chapter{Introduction} +\input{parts/introduction} \chapter{Background} \input {parts/background} -\chapter{Method} -\section{Overview} -\section{Cost Estimation} -\section{Profiling} +\chapter{Methodology} +\input{parts/methodology} + +\chapter{Implementation} +\input{parts/implementation} \chapter{Results} -\section{Methodology} -\section{Estimated costs} -\section{Actual benchmark comparison} -\section{Estimates vs reality} +\input{parts/results} \chapter{Analysis} -%% need to have the data lol +\input{parts/analysis} \chapter{Conclusion} +\input{parts/conclusion} \printbibliography - %% \appendix %% \chapter{First appendix} diff --git a/thesis/parts/analysis.tex b/thesis/parts/analysis.tex new file mode 100644 index 0000000..ec6f93d --- /dev/null +++ b/thesis/parts/analysis.tex @@ -0,0 +1 @@ +%% need to have the data lol diff --git a/thesis/parts/conclusion.tex b/thesis/parts/conclusion.tex new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/thesis/parts/conclusion.tex diff --git a/thesis/parts/implementation.tex b/thesis/parts/implementation.tex new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/thesis/parts/implementation.tex diff --git a/thesis/parts/introduction.tex b/thesis/parts/introduction.tex new file mode 100644 index 0000000..42f29c3 --- /dev/null +++ b/thesis/parts/introduction.tex @@ -0,0 +1,3 @@ +\todo{Motivation: Effect of structure selection on performance} +\todo{Shortfalls in existing work: Flexibility, scalability} +\todo{Contributions: Speed, Accuracy, etc.} diff --git a/thesis/parts/methodology.tex b/thesis/parts/methodology.tex new file mode 100644 index 0000000..c31c877 --- /dev/null +++ b/thesis/parts/methodology.tex @@ -0,0 +1,3 @@ +\todo{Overview} +\todo{Cost Estimation} +\todo{Profiling} diff --git a/thesis/parts/results.tex b/thesis/parts/results.tex new file mode 100644 index 0000000..f71c33a --- /dev/null +++ b/thesis/parts/results.tex @@ -0,0 +1,4 @@ +\section{Methodology} +\section{Estimated costs} +\section{Actual benchmark comparison} +\section{Estimates vs reality} |