summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/se2thesis
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-09-09 20:01:51 +0000
committerKarl Berry <karl@freefriends.org>2022-09-09 20:01:51 +0000
commit5c673ed5ffde518b33210cfb50ec5d8c0b3843ee (patch)
treebe70fc3d2dad35b07998b3ac780efccc6ea9a581 /Master/texmf-dist/doc/latex/se2thesis
parent21c2bf64600ffaec18d3f4caaa1f9506dcd0f373 (diff)
se2thesis (9sep22)
git-svn-id: svn://tug.org/texlive/trunk@64324 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/se2thesis')
-rw-r--r--Master/texmf-dist/doc/latex/se2thesis/README.md14
-rw-r--r--Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.pdfbin0 -> 1122537 bytes
-rw-r--r--Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.tex95
-rw-r--r--Master/texmf-dist/doc/latex/se2thesis/se2thesis.pdfbin0 -> 352914 bytes
4 files changed, 109 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/se2thesis/README.md b/Master/texmf-dist/doc/latex/se2thesis/README.md
new file mode 100644
index 00000000000..006085d427d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/se2thesis/README.md
@@ -0,0 +1,14 @@
+# se2thesis -- A Thesis Class for the Chair of Software Engineering II at the University of Passau, Germany
+
+The `se2thesis` bundle provides a document class for writing a theses with the
+[Chair of Software Engineering II](https://www.fim.uni-passau.de/en/chair-for-software-engineering-ii/)
+at the [University of Passau](https://www.uni-passau.de), Germany.
+The class is based on Markus Kohm's
+[KOMA-Script](https://ctan.org/pkg/koma-script) classes and provides several
+additions and customisations to these classes.
+While the class provides some basic settings, mostly regrading the type area,
+fonts, and the title page, it still provides large degrees of freedom to its
+users.
+However, the package's documentation also provides recommendations regarding
+several aspects, for example, recommending
+[biblatex](https://ctan.org/pkg/biblatex) for bibliographies.
diff --git a/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.pdf b/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.pdf
new file mode 100644
index 00000000000..ff5b7afc8fe
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.tex b/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.tex
new file mode 100644
index 00000000000..763f62a102b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.tex
@@ -0,0 +1,95 @@
+\documentclass[%
+ twoside=true,%
+ logofile={logo.png},%
+ thesistype=master,%
+ biblatex=true,%
+ UKenglish,%
+]{se2thesis}
+\listfiles
+\usepackage[ngerman,main=UKenglish]{babel}
+\usepackage{blindtext}
+\usepackage{csquotes}
+\usepackage[%
+ group-minimum-digits=4,%
+ list-final-separator={, and },%
+ add-integer-zero=false,%
+ free-standing-units,%
+ round-mode=figures,%
+ round-precision=3,%
+ detect-weight=true,%
+ separate-uncertainty=true,%
+ uncertainty-mode=separate,%
+]{siunitx}
+
+\usepackage[newfloat=true]{minted}
+\setminted{%
+ autogobble,%
+ breaklines=true,%
+ fontsize=\footnotesize,%
+ linenos=false,%
+ resetmargins=true,%
+ xleftmargin=1em,%
+ xrightmargin=1em,%
+ frame=single,%
+}
+
+\usepackage{filecontents}
+
+\begin{filecontents*}{\jobname.bib}
+ @book{Knu86,
+ author = {Knuth, Donald E.},
+ year = {1986},
+ title = {The \TeX book},
+ }
+\end{filecontents*}
+\addbibresource{\jobname.bib}
+
+\usepackage{booktabs}
+
+\usepackage{hyperref}
+\usepackage{cleveref}
+
+\author{Stephan Lukasczyk}
+\title{A Master Thesis Example Document}
+\degreeprogramme{Computer Science}
+\supervisor{Prof.\,Dr.~Max Mustermann}
+\advisor{Marianne Musterfrau}
+\department{Faculty of Examples}
+\institute{Chair of Example}
+\location{Passau}
+
+\begin{document}
+
+\frontmatter
+
+\maketitle
+
+\authorshipDeclaration
+
+\begin{abstract}
+ An English abstract to the thesis.
+\end{abstract}
+
+\begin{abstract}[german]
+ Eine deutschsprachige Zusammenfassung der Arbeit.
+\end{abstract}
+
+\begin{acknowledgements}
+ Some acknowledgements.
+\end{acknowledgements}
+
+\tableofcontents
+
+\mainmatter
+
+\blinddocument
+
+\section{Further Examples}
+
+We could reference the \TeX{} book~\cite{Knu86}.
+
+\backmatter
+
+\printbibliography
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/se2thesis/se2thesis.pdf b/Master/texmf-dist/doc/latex/se2thesis/se2thesis.pdf
new file mode 100644
index 00000000000..fe7fc82742f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/se2thesis/se2thesis.pdf
Binary files differ