From feb421a143497d021e542b234d9c6f09bea8cdea Mon Sep 17 00:00:00 2001 From: Alex Blank <38751347+blankinator@users.noreply.github.com> Date: Thu, 6 Mar 2025 16:55:26 +0100 Subject: [PATCH] added structure for latex --- thesis/main.tex | 35 +++++++++++++++++++ thesis/sections/conclusion/conclusion.tex | 5 +++ thesis/sections/discussion/discussion.tex | 4 +++ thesis/sections/introduction/introduction.tex | 6 ++++ thesis/sections/methodology/methodology.tex | 4 +++ thesis/sections/related_work/related_work.tex | 4 +++ thesis/sections/results/results.tex | 4 +++ 7 files changed, 62 insertions(+) create mode 100644 thesis/main.tex create mode 100644 thesis/sections/conclusion/conclusion.tex create mode 100644 thesis/sections/discussion/discussion.tex create mode 100644 thesis/sections/introduction/introduction.tex create mode 100644 thesis/sections/methodology/methodology.tex create mode 100644 thesis/sections/related_work/related_work.tex create mode 100644 thesis/sections/results/results.tex diff --git a/thesis/main.tex b/thesis/main.tex new file mode 100644 index 0000000..17cc74a --- /dev/null +++ b/thesis/main.tex @@ -0,0 +1,35 @@ +%! Author = alex +%! Date = 3/6/25 + +% Preamble +\documentclass[11pt]{article} + +% Packages +\usepackage{amsmath} +% biber bibliography +\usepackage[style=ieee, backend=biber]{biblatex} +\addbibresource{../main.bib} + +% Document +\begin{document} + \title{Finding Predictors for Human Ovulation with Attention Mechanisms} + \author{Alexander Blank} + \date{2025} + % university and faculty + \maketitle + + \include{sections/introduction/introduction} + + \include{sections/related_work/related_work} + + \include{sections/methodology/methodology} + + \include{sections/results/results} + + \include{sections/discussion/discussion} + + \include{sections/conclusion/conclusion} + + \printbibliography + +\end{document} \ No newline at end of file diff --git a/thesis/sections/conclusion/conclusion.tex b/thesis/sections/conclusion/conclusion.tex new file mode 100644 index 0000000..c1e93e9 --- /dev/null +++ b/thesis/sections/conclusion/conclusion.tex @@ -0,0 +1,5 @@ +%! Author = alex +%! Date = 3/6/25 + + +\section{Conclusion}\label{sec:conclusion} \ No newline at end of file diff --git a/thesis/sections/discussion/discussion.tex b/thesis/sections/discussion/discussion.tex new file mode 100644 index 0000000..96a3272 --- /dev/null +++ b/thesis/sections/discussion/discussion.tex @@ -0,0 +1,4 @@ +%! Author = alex +%! Date = 3/6/25 + +\section{Discussion}\label{sec:discussion} \ No newline at end of file diff --git a/thesis/sections/introduction/introduction.tex b/thesis/sections/introduction/introduction.tex new file mode 100644 index 0000000..95f1565 --- /dev/null +++ b/thesis/sections/introduction/introduction.tex @@ -0,0 +1,6 @@ +%! Author = alex +%! Date = 3/6/25 + +\section{Introduction}\label{sec:introduction} + + diff --git a/thesis/sections/methodology/methodology.tex b/thesis/sections/methodology/methodology.tex new file mode 100644 index 0000000..bd903e2 --- /dev/null +++ b/thesis/sections/methodology/methodology.tex @@ -0,0 +1,4 @@ +%! Author = alex +%! Date = 3/6/25 + +\section{Methodology}\label{sec:methodology} \ No newline at end of file diff --git a/thesis/sections/related_work/related_work.tex b/thesis/sections/related_work/related_work.tex new file mode 100644 index 0000000..822a001 --- /dev/null +++ b/thesis/sections/related_work/related_work.tex @@ -0,0 +1,4 @@ +%! Author = alex +%! Date = 3/6/25 + +\section{Related Work}\label{sec:related_work} \ No newline at end of file diff --git a/thesis/sections/results/results.tex b/thesis/sections/results/results.tex new file mode 100644 index 0000000..6dc4ffa --- /dev/null +++ b/thesis/sections/results/results.tex @@ -0,0 +1,4 @@ +%! Author = alex +%! Date = 3/6/25 + +\section{Results}\label{sec:results} \ No newline at end of file