35 lines
722 B
TeX
35 lines
722 B
TeX
%! 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} |