-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
4,445 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# License of Template and Guide | ||
|
||
We have chosen a license that allows you to use the template | ||
for your thesis and make changes as needed. You are *not* | ||
required to publish your thesis or its source code under the | ||
same license. If you fork the template or the guide, however, | ||
you have to comply with the following licensing restrictions. | ||
|
||
This guide and the template are made available | ||
under the Creative Commons license CC BY-SA 4.0 (http://creativecommons.org/licenses/by-sa/4.0/) | ||
with two exceptions: | ||
|
||
- Some excerpts, figures, and tables in Chapter 2 and | ||
Appendix B have been taken from the literature. The | ||
respective elements are explicitly marked with a citation | ||
and a note regarding the permission to re-use. They are not | ||
covered by the CC license. Permission to re-use and | ||
distribute these figures, tables, and excerpts must be | ||
obtained from the respective copyright holders. | ||
|
||
- Parts of Chapter 1 and Appendix C contain content from the | ||
MastersDoctoralThesis template, which is licensed under | ||
CC BY-SA 3.0. The original content has been written by | ||
Sunil Patel (www.sunilpatel.co.uk) and Vel | ||
(LaTeXTemplates.com). | ||
|
||
As this guide contains copyrighted material from third parties, | ||
you cannot host your own copy of this guide online. Please use | ||
the URLs printed on the title page of the Guide to link to it. | ||
|
||
The files PSIThesis.cls, setup.tex, and titlepage.tex | ||
are made available under the LPPL v1.3c | ||
(http://www.latex-project.org/lppl). | ||
|
||
The fonts that are included in this template in the fonts | ||
directory are licensed under the Apache License 2.0 (Roboto | ||
sans-serif font) and the SIL OFL Version 1.1 (Iosevka monospace | ||
font). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,43 @@ | ||
# thesis-templates | ||
# PSITheses: A LuaLaTeX Template and Thesis Writing Guide | ||
|
||
This repository contains a LaTeX template and a guide for writing a thesis. | ||
For now, there is only an English version of this template. | ||
|
||
Read Chapters 1 and 2 in the Guide for instructions on using the | ||
template. The Guide contains a lot of concrete recommendations that may | ||
help you write a compelling scientific thesis. A particular focus is | ||
on the topic of designing useful figures and tables. | ||
|
||
The template has been created mainly for students who want to submit a | ||
high-quality thesis to the Chair of Privacy and Security in Information | ||
Systems (PSI) at University of Bamberg (https://www.uni-bamberg.de/psi/). | ||
The template can also be used for seminar reports and PhD dissertations. | ||
|
||
The PSIThesis template and the guide reflect, at least to some degree, the | ||
personal taste of members of the chair. We encourage our students to use | ||
the template without any changes. If you \emph{do} have a different opinion | ||
on a particular aspect of the template or the guide, we will be happy to hear | ||
you out. | ||
|
||
The template and the guide are available under an open license (CC BY SA 4.0). | ||
If you want to use the template for a thesis submitted at a different | ||
department or organization, feel free to make changes at your discretion. | ||
Redistribution of the guide and the template is subject to the license (see | ||
details explained in LICENSE.md and the Guide). | ||
|
||
If you wish to contribute to the template or the guide, you may create an Issue or a Pull Request in the GitHub repository. | ||
|
||
The PSIThesis template consists of a document class (PSIThesis.cls) and | ||
additional TeX files. The template is based on the MastersDoctoralThesis | ||
template, which has been downloaded from | ||
https://www.latextemplates.com/template/masters-doctoral-thesis. | ||
|
||
The thesis guide (guide.pdf) is typeset with the the PSIThesis template. | ||
The guide demonstrates the features of the template. The source files of | ||
the guide are contained in this repository. You can refer to the source | ||
files to see how the template is used in a real-world document. | ||
|
||
Note that some of the figures in guide.pdf have been reproduced from the | ||
literature with permission of the publishers and the authors. As we do not | ||
have permission to redistribute these figures, they are not contained in | ||
this repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
main.pdf: main.tex misc/setup.tex misc/titlepage.tex chapters/*.tex appendices/*.tex | ||
lualatex main.tex && lualatex main.tex && biber main && lualatex main.tex | ||
|
||
clean: | ||
latexmk -c && rm main.pdf && rm main.bbl && rm main.run.xml | ||
move: | ||
if [ -d pdf ]; then \ | ||
mv *.pdf pdf/.; \ | ||
else \ | ||
mkdir pdf; \ | ||
mv *.pdf pdf/.; \ | ||
fi |
Oops, something went wrong.