Initial commit
This commit is contained in:
commit
5eebfead49
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
*
|
||||
!*.tex
|
||||
!*.pdf
|
||||
!*.bib
|
||||
!images
|
||||
!images/*
|
||||
!sections
|
||||
!sections/*
|
||||
!appendix
|
||||
!appendix/*
|
||||
!.gitignore
|
||||
!Readme.md
|
17
Addendum.tex
Normal file
17
Addendum.tex
Normal file
@ -0,0 +1,17 @@
|
||||
\pagenumbering{Roman}
|
||||
|
||||
%glossary
|
||||
\printglossary
|
||||
|
||||
\newpage
|
||||
|
||||
%bibliography
|
||||
\bibliographystyle{plain}
|
||||
\bibliography{Bibliography}
|
||||
|
||||
\newpage
|
||||
|
||||
%appendix
|
||||
\appendix
|
||||
\section{Anhang}
|
||||
\input{appendix/ExampleAppendix.tex}
|
4
Bibliography.bib
Normal file
4
Bibliography.bib
Normal file
@ -0,0 +1,4 @@
|
||||
@article{example,
|
||||
author = "some author",
|
||||
title = "some title"
|
||||
}
|
4
Content.tex
Normal file
4
Content.tex
Normal file
@ -0,0 +1,4 @@
|
||||
%all the main content goes here
|
||||
\pagenumbering{arabic}
|
||||
|
||||
\input{sections/ExampleSection.tex}
|
12
Glossary.tex
Normal file
12
Glossary.tex
Normal file
@ -0,0 +1,12 @@
|
||||
%%
|
||||
% all references for the glossary as well as the abbreviation list
|
||||
%%
|
||||
|
||||
\makeglossaries
|
||||
|
||||
\newglossaryentry{example}{
|
||||
name=example,
|
||||
description={example glossary entry}
|
||||
}
|
||||
|
||||
\newacronym{empl}{EXMPL}{example}
|
33
Packages.tex
Normal file
33
Packages.tex
Normal file
@ -0,0 +1,33 @@
|
||||
%encoding
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
%language
|
||||
\usepackage[ngerman]{babel}
|
||||
%images
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{ {./images/} }
|
||||
%svg images
|
||||
\usepackage{svg}
|
||||
%quotation
|
||||
\usepackage[%
|
||||
left = \glqq,%
|
||||
right = \grqq,%
|
||||
leftsub = \glq,%
|
||||
rightsub = \grq%
|
||||
]{dirtytalk}
|
||||
%boxes
|
||||
\usepackage[framemethod=tikz]{mdframed}
|
||||
%enumeration
|
||||
\usepackage{enumerate}
|
||||
%references
|
||||
\usepackage{hyperref}
|
||||
%for code snippets
|
||||
\usepackage{xcolor}
|
||||
\usepackage{listings}
|
||||
%glossary
|
||||
\usepackage{datatool}
|
||||
\usepackage[automake,acronym]{glossaries}
|
||||
%header and footer
|
||||
\usepackage{fancyhdr}
|
||||
%custom font sizes
|
||||
\usepackage{anyfontsize}
|
18
Preface.tex
Normal file
18
Preface.tex
Normal file
@ -0,0 +1,18 @@
|
||||
%all content that contains information about the main content (e.g. abbreviations)
|
||||
|
||||
\pagenumbering{roman}
|
||||
|
||||
%table of contents
|
||||
\tableofcontents
|
||||
\clearpage
|
||||
|
||||
%list of figures
|
||||
\listoffigures
|
||||
\clearpage
|
||||
|
||||
%list of tables
|
||||
\listoftables
|
||||
\clearpage
|
||||
|
||||
%abbreviations
|
||||
\printglossary[type=\acronymtype, title=Abkürzungsverzeichnis]
|
7
Readme.md
Normal file
7
Readme.md
Normal file
@ -0,0 +1,7 @@
|
||||
# How to use this template
|
||||
1. fork
|
||||
1. refactor
|
||||
1. compile
|
||||
|
||||
## Notice
|
||||
Requires you to enable [--shell escape](https://tex.stackexchange.com/questions/516604/how-to-enable-shell-escape-or-write18-visual-studio-code-latex-workshop)
|
14
Style.tex
Normal file
14
Style.tex
Normal file
@ -0,0 +1,14 @@
|
||||
%page format
|
||||
\usepackage[
|
||||
a4paper,
|
||||
top=35mm,right=20mm,bottom=30mm,left=20mm,
|
||||
headheight=25mm
|
||||
]{geometry}
|
||||
%header content
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
\lhead{\TITLE\\\SUBTITLE}
|
||||
\chead{\large\textbf{\leftmark}}
|
||||
\rhead{\includesvg[width=20mm]{./images/TH_OWL_Logo_small}}
|
||||
\lfoot{\AUTHORCOMPACT}
|
||||
\rfoot{\thepage}
|
BIN
Template_Document.pdf
Normal file
BIN
Template_Document.pdf
Normal file
Binary file not shown.
27
Template_Document.tex
Normal file
27
Template_Document.tex
Normal file
@ -0,0 +1,27 @@
|
||||
\documentclass[a4paper,12pt,oneside]{scrartcl}
|
||||
|
||||
\input{Packages.tex}
|
||||
\input{Style.tex}
|
||||
|
||||
\def \TITLE{Example Title}
|
||||
\def \SUBTITLE{Example Subtitle}
|
||||
\def \AUTHOR{Example Author\\author@example.com}
|
||||
\def \AUTHORCOMPACT{Example Author}
|
||||
\def \DATE{Example Date}
|
||||
|
||||
\input{Glossary.tex}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\input{TitlePage.tex}
|
||||
\clearpage
|
||||
|
||||
\input{Preface.tex}
|
||||
\clearpage
|
||||
|
||||
\input{Content.tex}
|
||||
\clearpage
|
||||
|
||||
\input{Addendum.tex}
|
||||
|
||||
\end{document}
|
16
TitlePage.tex
Normal file
16
TitlePage.tex
Normal file
@ -0,0 +1,16 @@
|
||||
\thispagestyle{empty}
|
||||
|
||||
\begin{center}
|
||||
\vspace*{-20mm}
|
||||
\includesvg[width=.75\pdfpagewidth]{./images/TH_OWL_Logo}\\
|
||||
\vspace{25mm}
|
||||
{\fontsize{50}{600}\selectfont \textbf{\TITLE}}\\
|
||||
\vspace{5mm}
|
||||
\Huge
|
||||
\textbf{\SUBTITLE}\\
|
||||
\vspace{40mm}
|
||||
\Large
|
||||
\AUTHOR\\
|
||||
\vspace{20mm}
|
||||
\DATE
|
||||
\end{center}
|
2
appendix/ExampleAppendix.tex
Normal file
2
appendix/ExampleAppendix.tex
Normal file
@ -0,0 +1,2 @@
|
||||
\subsection{Example Appendix}
|
||||
Example Appendix Text.
|
58
images/TH_OWL_Logo.svg
Normal file
58
images/TH_OWL_Logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 33 KiB |
66
images/TH_OWL_Logo_small.svg
Normal file
66
images/TH_OWL_Logo_small.svg
Normal file
@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 869.29333 359.05334"
|
||||
height="359.05334"
|
||||
width="869.29333"
|
||||
xml:space="preserve"
|
||||
id="svg4518"
|
||||
version="1.1"
|
||||
sodipodi:docname="TH_OWL_Logo_small.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="844"
|
||||
id="namedview19"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.93950833"
|
||||
inkscape:cx="395.29134"
|
||||
inkscape:cy="149.54823"
|
||||
inkscape:window-x="2141"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4526" /><metadata
|
||||
id="metadata4524"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4522" /><g
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,359.05333)"
|
||||
id="g4526"><path
|
||||
d="m 78.1535,197.873 c 0,1.876 -1.0719,2.948 -2.948,2.948 H 27.5016 c -1.8762,0 -2.9481,-1.072 -2.9481,-2.948 v -8.844 c 0,-1.876 1.0719,-2.948 2.9481,-2.948 h 15.8121 v -68.072 c 0,-1.876 1.0718,-2.948 2.9476,-2.948 h 10.184 c 1.8762,0 2.9481,1.072 2.9481,2.948 v 68.072 h 15.8121 c 1.8761,0 2.948,1.072 2.948,2.948 z m 51.1875,2.948 c -1.876,0 -2.948,-1.072 -2.948,-2.948 v -31.892 h -21.44 v 31.892 c 0,1.876 -1.072,2.948 -2.948,2.948 H 91.8207 c -1.8762,0 -2.948,-1.072 -2.948,-2.948 v -79.864 c 0,-1.876 1.0718,-2.948 2.948,-2.948 h 10.1843 c 1.876,0 2.948,1.072 2.948,2.948 v 33.232 h 21.44 v -33.232 c 0,-1.876 1.072,-2.948 2.948,-2.948 h 10.184 c 1.876,0 2.948,1.072 2.948,2.948 v 79.864 c 0,1.876 -1.072,2.948 -2.948,2.948 h -10.184"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4540" /><path
|
||||
d="m 115.657,101.115 c -18.2242,0 -26.8,-9.5138 -26.8,-25.4599 V 38.1352 c 0,-15.9461 8.5758,-25.4602 26.8,-25.4602 18.224,0 26.8,9.5141 26.8,25.4602 v 37.5199 c 0,15.9461 -8.576,25.4599 -26.8,25.4599 z m 0,-14.74 c 6.566,0 10.72,-2.5461 10.72,-9.3801 v -40.2 c 0,-6.834 -4.154,-9.3801 -10.72,-9.3801 -6.566,0 -10.72,2.5461 -10.72,9.3801 v 40.2 c 0,6.834 4.154,9.3801 10.72,9.3801 z m 87.234,13.4 c -1.876,0 -2.948,-0.9379 -3.082,-2.8141 l -3.618,-48.3738 -5.896,14.2039 c -0.67,1.6078 -1.742,2.2781 -3.35,2.2781 h -0.67 c -1.608,0 -2.68,-0.6703 -3.35,-2.2781 l -5.896,-13.9359 -3.484,48.1058 c -0.134,1.8762 -1.206,2.8141 -3.082,2.8141 h -9.38 c -2.01,0 -2.948,-1.0719 -2.948,-3.082 l 5.092,-79.8641 c 0.134,-1.8758 1.072,-2.8141 2.948,-2.8141 h 6.968 c 1.742,0 2.814,0.8043 3.484,2.4122 l 10.05,27.2019 10.05,-27.2019 c 0.67,-1.6079 1.742,-2.4122 3.484,-2.4122 h 6.968 c 1.876,0 2.814,0.9383 2.948,2.8141 l 5.092,79.8641 c 0,2.0101 -0.938,3.082 -2.948,3.082 z M 249.657,28.7551 V 96.827 c 0,1.8761 -1.072,2.948 -2.948,2.948 h -10.184 c -1.876,0 -2.948,-1.0719 -2.948,-2.948 V 16.9629 c 0,-1.8758 1.072,-2.9481 2.948,-2.9481 h 42.344 c 1.876,0 2.948,1.0723 2.948,2.9481 v 8.8441 c 0,1.8758 -1.072,2.9481 -2.948,2.9481 h -29.212"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4542" /><path
|
||||
d="m 175.718,195.886 c -7.506,0 -14.375,5.009 -16.41,12.603 -2.43,9.07 2.952,18.391 12.021,20.822 l 93.543,25.065 c 9.067,2.429 18.39,-2.953 20.821,-12.021 2.43,-9.069 -2.952,-18.391 -12.021,-20.821 l -93.543,-25.065 c -1.473,-0.396 -2.955,-0.583 -4.411,-0.583"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4544" /><path
|
||||
d="m 244.207,127.411 c -4.351,0 -8.701,1.66 -12.021,4.979 l -68.478,68.479 c -6.639,6.639 -6.639,17.402 0,24.041 6.639,6.639 17.402,6.639 24.042,0 l 68.478,-68.478 c 6.639,-6.639 6.639,-17.403 0,-24.042 -3.32,-3.319 -7.67,-4.979 -12.021,-4.979"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4546" /><path
|
||||
d="m 244.218,127.407 c -1.457,0 -2.937,0.188 -4.411,0.583 -9.068,2.43 -14.45,11.752 -12.021,20.821 l 25.065,93.544 c 2.43,9.07 11.754,14.448 20.821,12.021 9.069,-2.43 14.451,-11.752 12.021,-20.821 l -25.065,-93.544 c -2.035,-7.595 -8.905,-12.604 -16.41,-12.604"
|
||||
style="fill:#38434b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4548" /><path
|
||||
d="m 281.301,249.972 c -4.155,4.147 -10.346,6.026 -16.423,4.399 0.058,0.014 0.116,0.021 0.174,0.036 -5.744,-1.481 -10.549,-5.919 -12.196,-12.058 l -7.62,-28.442 28.442,7.621 c 6.138,1.647 10.577,6.451 12.058,12.195 -0.016,-0.058 -0.023,-0.116 -0.037,-0.174 1.628,6.077 -0.251,12.269 -4.398,16.423"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4550" /><path
|
||||
d="m 159.306,217.29 c -1.514,-5.672 -0.046,-11.973 4.402,-16.422 -0.041,0.043 -0.076,0.089 -0.119,0.132 4.155,-4.233 10.401,-6.175 16.541,-4.533 l 28.442,7.622 -20.821,20.821 c -4.496,4.493 -10.876,5.935 -16.591,4.345 0.058,0.016 0.113,0.039 0.169,0.056 -6.077,-1.629 -10.499,-6.353 -12.023,-12.021"
|
||||
style="fill:#a20936;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4552" /><path
|
||||
d="m 248.608,127.988 c 5.669,1.525 10.392,5.947 12.021,12.024 -0.017,-0.057 -0.039,-0.111 -0.055,-0.169 1.588,5.715 0.148,12.095 -4.345,16.591 l -20.822,20.82 -7.62,-28.441 c -1.644,-6.14 0.298,-12.387 4.532,-16.541 -0.043,0.042 -0.09,0.078 -0.133,0.118 4.449,-4.448 10.751,-5.916 16.422,-4.402"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4554" /></g></svg>
|
After Width: | Height: | Size: 6.1 KiB |
61
images/TH_OWL_Logo_tiny.svg
Normal file
61
images/TH_OWL_Logo_tiny.svg
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 869.29333 359.05334"
|
||||
height="359.05334"
|
||||
width="869.29333"
|
||||
xml:space="preserve"
|
||||
id="svg4518"
|
||||
version="1.1"
|
||||
sodipodi:docname="TH_OWL_Logo_tiny.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="844"
|
||||
id="namedview19"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.93950833"
|
||||
inkscape:cx="395.29134"
|
||||
inkscape:cy="149.54823"
|
||||
inkscape:window-x="2141"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4526"
|
||||
inkscape:document-rotation="0" /><metadata
|
||||
id="metadata4524"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4522" /><g
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,359.05333)"
|
||||
id="g4526"><path
|
||||
d="m 175.718,195.886 c -7.506,0 -14.375,5.009 -16.41,12.603 -2.43,9.07 2.952,18.391 12.021,20.822 l 93.543,25.065 c 9.067,2.429 18.39,-2.953 20.821,-12.021 2.43,-9.069 -2.952,-18.391 -12.021,-20.821 l -93.543,-25.065 c -1.473,-0.396 -2.955,-0.583 -4.411,-0.583"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4544" /><path
|
||||
d="m 244.207,127.411 c -4.351,0 -8.701,1.66 -12.021,4.979 l -68.478,68.479 c -6.639,6.639 -6.639,17.402 0,24.041 6.639,6.639 17.402,6.639 24.042,0 l 68.478,-68.478 c 6.639,-6.639 6.639,-17.403 0,-24.042 -3.32,-3.319 -7.67,-4.979 -12.021,-4.979"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4546" /><path
|
||||
d="m 244.218,127.407 c -1.457,0 -2.937,0.188 -4.411,0.583 -9.068,2.43 -14.45,11.752 -12.021,20.821 l 25.065,93.544 c 2.43,9.07 11.754,14.448 20.821,12.021 9.069,-2.43 14.451,-11.752 12.021,-20.821 l -25.065,-93.544 c -2.035,-7.595 -8.905,-12.604 -16.41,-12.604"
|
||||
style="fill:#38434b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4548" /><path
|
||||
d="m 281.301,249.972 c -4.155,4.147 -10.346,6.026 -16.423,4.399 0.058,0.014 0.116,0.021 0.174,0.036 -5.744,-1.481 -10.549,-5.919 -12.196,-12.058 l -7.62,-28.442 28.442,7.621 c 6.138,1.647 10.577,6.451 12.058,12.195 -0.016,-0.058 -0.023,-0.116 -0.037,-0.174 1.628,6.077 -0.251,12.269 -4.398,16.423"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4550" /><path
|
||||
d="m 159.306,217.29 c -1.514,-5.672 -0.046,-11.973 4.402,-16.422 -0.041,0.043 -0.076,0.089 -0.119,0.132 4.155,-4.233 10.401,-6.175 16.541,-4.533 l 28.442,7.622 -20.821,20.821 c -4.496,4.493 -10.876,5.935 -16.591,4.345 0.058,0.016 0.113,0.039 0.169,0.056 -6.077,-1.629 -10.499,-6.353 -12.023,-12.021"
|
||||
style="fill:#a20936;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4552" /><path
|
||||
d="m 248.608,127.988 c 5.669,1.525 10.392,5.947 12.021,12.024 -0.017,-0.057 -0.039,-0.111 -0.055,-0.169 1.588,5.715 0.148,12.095 -4.345,16.591 l -20.822,20.82 -7.62,-28.441 c -1.644,-6.14 0.298,-12.387 4.532,-16.541 -0.043,0.042 -0.09,0.078 -0.133,0.118 4.449,-4.448 10.751,-5.916 16.422,-4.402"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4554" /></g></svg>
|
After Width: | Height: | Size: 3.9 KiB |
2
sections/ExampleSection.tex
Normal file
2
sections/ExampleSection.tex
Normal file
@ -0,0 +1,2 @@
|
||||
\section{Example Section}
|
||||
Example Text \gls{example} using \acrshort{empl} and also citing \cite{example}
|
Loading…
x
Reference in New Issue
Block a user