diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6f2b80f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: gitea.rixxc.de/rixxc/ma-latex:latest + commands: + - pdflatex -synctex=1 -interaction=nonstopmode thesis/"Abschlussarbeit".tex + - pdflatex -synctex=1 -interaction=nonstopmode thesis/"Abschlussarbeit".tex diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..d419a7b --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,5 @@ +FROM pandoc/latex + +RUN tlmgr install koma-script xpatch enumitem preprint braket algorithm2e ifoddpage relsize cancel cite + +CMD /bin/bash diff --git a/Abschlussarbeit.tex b/thesis/Abschlussarbeit.tex similarity index 95% rename from Abschlussarbeit.tex rename to thesis/Abschlussarbeit.tex index d5ba49c..5a46189 100644 --- a/Abschlussarbeit.tex +++ b/thesis/Abschlussarbeit.tex @@ -11,12 +11,14 @@ listof=totoc, \usepackage{thesisstyle} \begin{document} +\include{macros.tex} + \thispagestyle{empty} \begin{center} \textbf{\huge{\vspace{3em}\\ -Titel +A formal Security Analysis of the EdDSA Signature Scheme \vspace{3mm} }} @@ -58,7 +60,7 @@ Aaron Kaiser \begin{abstract} -%Abstract +abstract \end{abstract} diff --git a/Logo_RUB_BLAU_4c.eps b/thesis/Logo_RUB_BLAU_4c.eps similarity index 100% rename from Logo_RUB_BLAU_4c.eps rename to thesis/Logo_RUB_BLAU_4c.eps diff --git a/Logo_RUB_BLAU_srgb.jpg b/thesis/Logo_RUB_BLAU_srgb.jpg similarity index 100% rename from Logo_RUB_BLAU_srgb.jpg rename to thesis/Logo_RUB_BLAU_srgb.jpg diff --git a/thesis/macros.tex b/thesis/macros.tex new file mode 100644 index 0000000..e69de29 diff --git a/thesisstyle.sty b/thesis/thesisstyle.sty similarity index 100% rename from thesisstyle.sty rename to thesis/thesisstyle.sty