diff --git a/latex/main.pdf b/latex/main.pdf new file mode 100644 index 0000000..74a3868 Binary files /dev/null and b/latex/main.pdf differ diff --git a/latex/main.tex b/latex/main.tex new file mode 100644 index 0000000..85d48f7 --- /dev/null +++ b/latex/main.tex @@ -0,0 +1,73 @@ +\documentclass[english,notitlepage,reprint,nofootinbib]{revtex4-1} % defines the basic parameters of the document +\usepackage{subfiles} +% For preview: skriv i terminal: latexmk -pdf -pvc filnavn +% If you want a single-column, remove "reprint" + +% Allows special characters (including æøå) +\usepackage[utf8]{inputenc} +% \usepackage[english]{babel} + +%% Note that you may need to download some of these packages manually, it depends on your setup. +%% I recommend downloading TeXMaker, because it includes a large library of the most common packages. + +\usepackage{physics,amssymb} % mathematical symbols (physics imports amsmath) +\include{amsmath} +\usepackage{graphicx} % include graphics such as plots +\def\resources{\graphicspath{{"./images/"}}} +\usepackage{xcolor} % set colors +\usepackage{hyperref} % automagic cross-referencing +\usepackage{listings} % display code +\usepackage{subfigure} % imports a lot of cool and useful figure commands +% \usepackage{float} +%\usepackage[section]{placeins} +\usepackage{algorithm} +\usepackage[noend]{algpseudocode} +\usepackage{subfigure} +\usepackage{tikz} +\usetikzlibrary{quantikz} +% defines the color of hyperref objects +% Blending two colors: blue!80!black = 80% blue and 20% black +\hypersetup{ % this is just my personal choice, feel free to change things + colorlinks, + linkcolor={red!50!black}, + citecolor={blue!50!black}, + urlcolor={blue!80!black}} + +% Biblio stuff +\def\biblio{\bibliographystyle{plain}\bibliography{./references}} + + +\begin{document} + +\title{Project 3} % self-explanatory +\author{Cory Alexander Balaton \& Janita Ovidie Sandtrøen Willumsen} % self-explanatory +\date{\today} % self-explanatory +\noaffiliation % ignore this, but keep it. + +% Abstract +\subfile{./sections/abstract.tex} + + +\maketitle + +\textit{https://github.uio.no/FYS3150-G2-2023/Project-3} + +% Introduction +\subfile{./sections/introduction.tex} + +% Methods +\subfile{./sections/methods.tex} + +% Results +\subfile{./sections/results.tex} + +% Conclusion +\subfile{./sections/conclusion.tex} + +\onecolumngrid + +\bibliographystyle{plain} +\bibliography{.references/references} + + +\end{document} diff --git a/latex/sections/abstract.tex b/latex/sections/abstract.tex new file mode 100644 index 0000000..e170ec7 --- /dev/null +++ b/latex/sections/abstract.tex @@ -0,0 +1,12 @@ +\documentclass[../main.tex]{subfiles} +\resources % search for graphics in ../res/imgs/ + + +\begin{document} + +\begin{abstract} + Add an abstract for the project? +\end{abstract} + +\biblio +\end{document} \ No newline at end of file diff --git a/latex/sections/conclusion.tex b/latex/sections/conclusion.tex new file mode 100644 index 0000000..4107c03 --- /dev/null +++ b/latex/sections/conclusion.tex @@ -0,0 +1,13 @@ +\documentclass[../main.tex]{subfiles} +\resources % search for graphics in ../res/imgs/ + + +\begin{document} + +\section{Conclusion} + + + + +\biblio +\end{document} \ No newline at end of file diff --git a/latex/sections/introduction.tex b/latex/sections/introduction.tex new file mode 100644 index 0000000..da0b77f --- /dev/null +++ b/latex/sections/introduction.tex @@ -0,0 +1,13 @@ +\documentclass[../main.tex]{subfiles} +\resources % search for graphics in ../res/imgs/ + + +\begin{document} + +\section{Introduction} + + + + +\biblio +\end{document} \ No newline at end of file diff --git a/latex/sections/methods.tex b/latex/sections/methods.tex new file mode 100644 index 0000000..e2f6d07 --- /dev/null +++ b/latex/sections/methods.tex @@ -0,0 +1,13 @@ +\documentclass[../main.tex]{subfiles} +\resources % search for graphics in ../res/imgs/ + + +\begin{document} + +\section{Methods} + + + + +\biblio +\end{document} \ No newline at end of file diff --git a/latex/sections/results.tex b/latex/sections/results.tex new file mode 100644 index 0000000..003cba3 --- /dev/null +++ b/latex/sections/results.tex @@ -0,0 +1,13 @@ +\documentclass[../main.tex]{subfiles} +\resources % search for graphics in ../res/imgs/ + + +\begin{document} + +\section{Results} + + + + +\biblio +\end{document} \ No newline at end of file