This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
127 lines (104 loc) · 2.43 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{a4wide}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{graphicx}
\usepackage[danish]{babel}
\usepackage{float}
\usepackage{appendix}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{lipsum}
\usepackage{fancyref}
%\usepackage{varioref}
\usepackage{svg}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{mdframed}
\usepackage{placeins}
\usepackage{algpseudocode}
\usepackage{booktabs}
\usepackage{pdfpages}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
% bokse
\usepackage[framemethod=default]{mdframed}
% coding
\usepackage{pythonhighlight}
\newcommand{\code}{\texttt}
% sources
\usepackage[
backend=biber,
style=apa,
]{biblatex}
\addbibresource{sources.bib}
% Documentation for fancyref:
% https://mirrors.dotsrc.org/ctan/macros/latex/contrib/fancyref/fancyref.pdf
% Redefine commands for danish - add more when needed, see above pdf p. 8 - 10
\renewcommand*{\Frefeqname}{ligning}
\renewcommand*{\Frefsecname}{sektion}
\renewcommand*{\tablename}{tabel}
\renewcommand{\fancyrefdefaultformat}{plain}
%\renewcommand*{\pagename}{side}
%\renewcommand*{\Frefonname}{på}
%\renewcommand*{\Frefseename}{se}
% path for image
\graphicspath{ {./images/} }
\usepackage{eso-pic}
\newcommand\BackgroundPic{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[angle=90, width=\paperwidth,height=\paperheight,%
keepaspectratio]{final.png}%
\vfill
}}}
\title{
\vspace{7cm}
\\
Eliptisk kurvekryptografi
\\
}
\author{Philip Rying}
\date{18-03-2022}
\pagestyle{fancy}
\fancyhf{}
\rhead{\leftmark}
\lhead{Philip Rying}
\rfoot{\thepage{} af \pageref{LastPage}}
\begin{document}
\includepdf[pages={1}]{Philip Rying 3a1 SOP Opgaveformulering.pdf}
\AddToShipoutPicture*{\BackgroundPic}
\maketitle
\newpage
\input{kapitler/abstract}
\newpage
\tableofcontents
\newpage
\input{kapitler/indledning}
\newpage
\input{kapitler/elliptiske_kurver}
\input{kapitler/grupper}
\input{kapitler/endelige_legemer}
\input{kapitler/kryptologi}
\input{kapitler/diskrete_logaritmeproblem}
\input{kapitler/implementering}
\input{kapitler/vurdering_og_diskussion}
\input{kapitler/konklusion}
%\input{kapitler/ligninger}
\newpage
\addcontentsline{toc}{section}{Litteratur}
\printbibliography
\appendix
\input{kapitler/bilag}
\end{document}