40 lines
728 B
TeX
40 lines
728 B
TeX
%! Author = alex
|
|
%! Date = 3/6/25
|
|
|
|
% Preamble
|
|
\documentclass[11pt]{article}
|
|
|
|
% Packages
|
|
\usepackage{amsmath}
|
|
|
|
\usepackage{graphicx}
|
|
\graphicspath{{resources/figures/}}
|
|
|
|
\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}
|
|
|
|
\include{sections/background}
|
|
|
|
\include{sections/related_work}
|
|
|
|
\include{sections/methodology}
|
|
|
|
\include{sections/results}
|
|
|
|
\include{sections/discussion}
|
|
|
|
\include{sections/conclusion}
|
|
|
|
\printbibliography
|
|
|
|
\end{document} |