diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-31 23:10:25 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 00:00:00 +0200 |
commit | ff14f9474303784518589fd0ea1ad4b44dbc7161 (patch) | |
tree | f57e0192e5d0b8461aa306fd52a9d102fb927508 /templates/latex/main.tex | |
parent | feat(rust): Update to my SOTA (diff) | |
download | flake-templates-ff14f9474303784518589fd0ea1ad4b44dbc7161.tar.gz flake-templates-ff14f9474303784518589fd0ea1ad4b44dbc7161.zip |
feat(latex): Update to my current SOTA
Diffstat (limited to 'templates/latex/main.tex')
-rw-r--r-- | templates/latex/main.tex | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/latex/main.tex b/templates/latex/main.tex new file mode 100644 index 0000000..591e600 --- /dev/null +++ b/templates/latex/main.tex @@ -0,0 +1,44 @@ +% LTeX: language=en-GB +%\documentclass[a4paper, 12pt, nosolutions]{report} +% \documentclass[a4paper, 12pt, onecolumn]{report} +\documentclass[a4paper, 12pt, twocolumn]{scrartcl} + +\input{headers/preamble.tex} +\input{headers/preamble_local.tex} + +\title{\textbf{TODO}} +\author{Benedikt Peetz \\ +\href{mailto:benedikt.peetz@b-peetz.de}{benedikt.peetz@b-peetz.de}\\[1cm] +{\small Supervisor: TODO}} +\date{\DTMToday} + +% For the copyright section +\years{2024} +\authors{Benedikt Peetz} + +\makeatletter +\hypersetup{ + pdftitle={\@title}, + pdfsubject={}, + pdfauthor={\@authors}, + pdfkeywords={TODO}, + colorlinks, + linkcolor={black}, + citecolor={black}, + urlcolor={blue!80!black} +} +\makeatother + + +\includeonly{} + +\begin{document} + \onecolumn + \input{content/static/title} + \twocolumn + + % NEXT_CHAPTER + + \clearpage{} + \printbibliography\relax +\end{document} |