- Change: readme text

- Add: initial style, document
This commit is contained in:
Ricardo Langner
2011-06-15 00:22:32 +02:00
parent 6a6f7bb18f
commit 49a56906c7
17 changed files with 6493 additions and 10 deletions

BIN
Clean-Thesis.pdf Normal file

Binary file not shown.

210
Clean-Thesis.tex Normal file
View File

@@ -0,0 +1,210 @@
% **************************************************
% Clean Thesis
% -- A LaTeX Style for Thesis Documents --
%
% Copyright (C) 2011 Ricardo Langner
% **************************************************
%
% Readme:
% ----------------------------------------
% *** Clean, Simple, Elegant ***
% "Clean Thesis" is a LaTeX style for thesis documents, developed
% for my diplom thesis (Diplomarbeit). The style can be understood
% as my personal compromise — a typical clean looking scientific
% document combined and polished with minor beautifications.
%
% The design of this "Clean Thesis" style is inspired
% by user guide documents from Apple Inc.
%
% Note: If you are looking for an exact and correct style regarding
% typographic rules, please have a look at the "Classic Thesis Style"
% (see http://www.miede.de/index.php?page=classicthesis).
%
% *** Donation = Postcard ***
% Based on the idea of Andr\'e Miede: If you like the "Clean Thesis"
% style I would be very pleased about a donation in the form of a
% POSTCARD. You can find my address at http://cleanthesis.der-ric.de/
% as well as in the file Clean-Thesis.pdf. I am going to collect all
% postcards and exhibit them at the website I mentioned.
%
% *** Idea and Inspiration ***
% The idea of providing my customized style for thesis documents
% passed through my mind while writing my own thesis. Motivated and
% inspired by the superb "Classic Thesis Style"
% (see http://www.miede.de/index.php?page=classicthesis) by Andr\'e Miede
% (thanks to Andr\'e for doing a great job) I decided to collect all
% design and style related functionality in a separate LaTeX style and
% provide this style to other thesis writers.
%
%
% License Information:
% ----------------------------------------
% "Clean Thesis" is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% "Clean Thesis" is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% **************************************************
% **************************************************
% Document Class Definition
% **************************************************
\documentclass[%
paper=A4, % paper size --> A4 is default in Germany
twoside=true, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
parskip=full, % spacing value / method for paragraphs
chapterprefix=true, % prefix for chapter marks
11pt, % font size
headings=normal, % size of headings
bibliography=totoc, % include bib in toc
listof=totoc, % include listof entries in toc
titlepage=on, % own page for each title page
captions=tableabove, % display table captions above the float env
draft=false, % value for draft version
]{scrreprt}%
% **************************************************
% Debug LaTeX Information
% **************************************************
%\listfiles
% **************************************************
% Information and Commands for Reuse
% **************************************************
\newcommand{\thesisTitle}{The Clean Thesis Style}
\newcommand{\thesisName}{Ricardo Langner}
\newcommand{\thesisSubject}{Documentation}
\newcommand{\thesisDate}{June 8, 2011}
\newcommand{\thesisVersion}{0.1b}
\newcommand{\thesisFirstReviewer}{Jane Doe}
\newcommand{\thesisFirstReviewerUniversity}{\protect{Clean Thesis Style University}}
\newcommand{\thesisFirstReviewerDepartment}{Department of Clean Thesis Style}
\newcommand{\thesisSecondReviewer}{John Doe}
\newcommand{\thesisSecondReviewerUniversity}{\protect{Clean Thesis Style University}}
\newcommand{\thesisSecondReviewerDepartment}{Department of Clean Thesis Style}
\newcommand{\thesisFirstSupervisor}{Jane Doe}
\newcommand{\thesisSecondSupervisor}{John Smith}
\newcommand{\thesisUniversity}{\protect{Clean Thesis Style University}}
\newcommand{\thesisUniversityDepartment}{Department of Clean Thesis Style}
\newcommand{\thesisUniversityInstitute}{Institut for Clean Thesis Dev}
\newcommand{\thesisUniversityGroup}{Clean Thesis Group (CTG)}
\newcommand{\thesisUniversityCity}{City}
\newcommand{\thesisUniversityStreetAddress}{Street address}
\newcommand{\thesisUniversityPostalCode}{Postal Code}
% **************************************************
% Load and Configure Packages
% **************************************************
\usepackage[utf8]{inputenc} % defines file's character encoding
\usepackage[english]{babel} % babel system, adjust the language of the content
\usepackage[ % clean thesis style
%sansserif, % - use sans serif font family
%colorreduced, % - controls the use of colors; use colorreduced or colorbw
%figurecaptionoutside, % - puts the label of figures into the margin
sectionlabeloutside, % - puts the label of sections into the margin
subsectionlabeloutside, % - puts the label of subsections into the margin
]{cleanthesis}
\hypersetup{ % setup the hyperref-package options
pdftitle={\thesisTitle}, % - title (PDF meta)
pdfsubject={\thesisSubject},% - subject (PDF meta)
pdfauthor={\thesisName}, % - author (PDF meta)
plainpages=false, % -
colorlinks=false, % - colorize links?
pdfborder={0 0 0}, % -
breaklinks=true, % - allow line break inside links
bookmarksnumbered=true, %
bookmarksopen=true %
}
% **************************************************
% Document CONTENT
% **************************************************
\begin{document}
% --------------------------
% rename document parts
% --------------------------
%\renewcaptionname{ngerman}{\figurename}{Abb.}
%\renewcaptionname{ngerman}{\tablename}{Tab.}
\renewcaptionname{english}{\figurename}{Fig.}
\renewcaptionname{english}{\tablename}{Tab.}
% --------------------------
% Front matter
% --------------------------
\pagenumbering{roman} % roman page numbing (invisible for empty page style)
\pagestyle{empty} % no header or footers
\input{content/titlepages} % INCLUDE: all titlepages
\cleardoublepage
\pagestyle{plain} % display just page numbers
\input{content/abstract} % INCLUDE: the abstracts (english and german)
\cleardoublepage
%
\input{content/acknowledgement} % INCLUDE: acknowledgement
\cleardoublepage
%
\setcounter{tocdepth}{2} % define depth of toc
\tableofcontents % display table of contents
\cleardoublepage
% --------------------------
% Body matter
% --------------------------
\pagenumbering{arabic} % arabic page numbering
\setcounter{page}{1} % set page counter
\pagestyle{maincontentstyle} % fancy header and footer
\input{content/chapter-introduction} % INCLUDE: introduction
\input{content/chapter-related-work} % INCLUDE: related work
\input{content/chapter-system} % INCLUDE: system
\input{content/chapter-concepts} % INCLUDE: concepts
\input{content/chapter-conclusion} % INCLUDE: conclusion
\cleardoublepage
% --------------------------
% Back matter
% --------------------------
{%
\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\biblabelsep}{0pt}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\nocite{*}
\printbibliography[nottype=online]
\printbibliography[heading=subbibliography,title={Webseiten},type=online,prefixnumbers={@}]
}
\cleardoublepage
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\input{content/colophon}
\cleardoublepage
\input{content/declaration}
\clearpage
\newpage
\mbox{}
% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}

37
README
View File

@@ -1,22 +1,39 @@
Clean Thesis Style
Clean Thesis
-- A LaTeX Style for Thesis Documents --
Copyright (C) 2011 Ricardo Langner
Readme:
----------------------------------------
*** Clean, Simple, Elegant ***
"Clean Thesis" is a LaTeX style for thesis documents, developed
for my diplom thesis (Diplomarbeit). The style can be understood
as my personal compromise — a typical clean looking scientific
document combined and polished with minor beautifications.
The design of this "Clean Thesis" style is inspired
by user guide documents from Apple Inc.
If you like the "Clean Thesis" style I would be very pleased about a
donation (see http://cleanthesis.der-ric.de/). If you can not or do
not want to donate then I would appreciate a POSTCARD. You can find
my address in the file Clean-Thesis.pdf. I am going to collect all
postcards and exhibit them online at http://cleanthesis.der-ric.de/.
Note: If you are looking for an exact and correct style regarding
typographic rules, please have a look at the "Classic Thesis Style"
(see http://www.miede.de/index.php?page=classicthesis).
The idea of providing my customized style for thesis documents was
motivated and inspired by the popular "A Classic Thesis Style"
developed by Andr\'e Miede (http://www.miede.de). Thanks to Andr\'e
for doing a great job.
*** Donation = Postcard ***
Based on the idea of Andr\'e Miede: If you like the "Clean Thesis"
style I would be very pleased about a donation in the form of a
POSTCARD. You can find my address at http://cleanthesis.der-ric.de/
as well as in the file Clean-Thesis.pdf. I am going to collect all
postcards and exhibit them at the website I mentioned.
*** Idea and Inspiration ***
The idea of providing my customized style for thesis documents
passed through my mind while writing my own thesis. Motivated and
inspired by the superb "Classic Thesis Style"
(see http://www.miede.de/index.php?page=classicthesis) by Andr\'e Miede
(thanks to Andr\'e for doing a great job) I decided to collect all
design and style related functionality in a separate LaTeX style and
provide this style to other thesis writers.
License Information:

88
bib-refs.bib Normal file
View File

@@ -0,0 +1,88 @@
%% This BibTeX bibliography file was created using BibDesk.
%% http://bibdesk.sourceforge.net/
%% Created for Ricardo Langner at 2011-05-27 13:40:00 +0200
%% Saved with string encoding Unicode (UTF-8)
@online{WEB:GNU:GPL:2010,
Author = {{Free Software Foundation, Inc.}},
Date-Added = {2011-05-27 13:38:31 +0200},
Date-Modified = {2011-05-27 13:39:24 +0200},
Title = {GNU General Public License},
Url = {http://www.gnu.org/licenses/gpl.html},
Urldate = {2011-05-27},
Year = {2010}}
@online{WEB:Miede:2011,
Author = {Andr{\'e} Miede},
Date-Added = {2011-05-27 13:35:41 +0200},
Date-Modified = {2011-05-27 13:37:15 +0200},
Title = {A Classic Thesis Style by Andr{\'e} Miede},
Url = {http://www.miede.de/index.php?page=classicthesis},
Urldate = {2011-05-27},
Year = {2011}}
@book{Jurgens:2000,
Author = {Manuela J{\"u}rgens},
Date-Added = {2011-05-27 13:34:22 +0200},
Date-Modified = {2011-05-27 13:34:59 +0200},
Publisher = {FernUniversit{\"a}t Gesamthochschule in Hagen},
Title = {LaTeX: eine Einf{\"u}hrung und ein bisschen mehr},
Year = {2000}}
@book{Jurgens:1995,
Author = {Manuela J{\"u}rgens},
Date-Added = {2011-05-27 13:32:40 +0200},
Date-Modified = {2011-05-27 13:34:17 +0200},
Publisher = {FernUniversit{\"a}t Gesamthochschule in Hagen},
Title = {LaTeX: Fortgeschrittene Anwendungen},
Year = {1995}}
@manual{Miede:2011,
Author = {Andr{\'e} Miede},
Date-Added = {2011-05-27 13:29:22 +0200},
Date-Modified = {2011-05-27 13:30:39 +0200},
Title = {A Classic Thesis Style: An Homage to The Elements of Typographic Style},
Year = {2011}}
@book{Kohm:2011,
Author = {Markus Kohm and Jens-Uwe-Morawski},
Date-Added = {2011-05-27 13:27:35 +0200},
Date-Modified = {2011-05-27 13:28:22 +0200},
Title = {KOMA-Script: Die Anleitung},
Year = {2011}}
@book{Apple:keynote:2010,
Author = {{Apple Inc.}},
Date-Added = {2011-03-21 17:19:42 +0100},
Date-Modified = {2011-03-21 17:19:42 +0100},
Publisher = {{Apple Inc.}},
Title = {Keynote '09 User Guide},
Year = {2010},
Bdsk-File-1 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAfIAAAAAAfIAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfS2V5biM0M0VCNTcucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ+tXyUqouAAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqaqAAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX0tleW4jNDNFQjU3LnBkZgAOAFYAKgBBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAEsAZQB5AG4AbwB0AGUAIAAnADAAOQAgAFUAcwBlAHIAIABHAHUAaQBkAGUALgBwAGQAZgAPABoADABNAGEAYwBpAG4AdABvAHMAaAAgAEgARAASAEpVc2Vycy9kZXJyaWMvQmlibGlvZ3JhcGh5L0ZpbGVzL0FwcGxlIEluYy5fMjAxMF9LZXlub3RlICcwOSBVc2VyIEd1aWRlLnBkZgATAAEvAAAVAAIADf//AACABdIcHR4fWCRjbGFzc2VzWiRjbGFzc25hbWWjHyAhXU5TTXV0YWJsZURhdGFWTlNEYXRhWE5TT2JqZWN0XxBDLi4vLi4vQmlibGlvZ3JhcGh5L0ZpbGVzL0FwcGxlIEluYy5fMjAxMF9LZXlub3RlICcwOSBVc2VyIEd1aWRlLnBkZtIcHSQloiUhXE5TRGljdGlvbmFyeRIAAYagXxAPTlNLZXllZEFyY2hpdmVyAAgAEQAWAB8AKAAyADUAOgA8AEUASwBSAF0AZQBsAG8AcQBzAHYAeAB6AHwAhgCTAJgAoAKWApgCnQKmArECtQLDAsoC0wMZAx4DIQMuAzMAAAAAAAACAQAAAAAAAAAoAAAAAAAAAAAAAAAAAAADRQ==},
Bdsk-File-2 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAfYAAAAAAfYAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfS2V5biM0NkUzNkUucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARuNuyUqiogAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqUkgAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX0tleW4jNDZFMzZFLnBkZgAOAFgAKwBBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAEsAZQB5AG4AbwB0AGUAIAAnADAAOQAgAFUAcwBlAHIAIABHAHUAaQBkAGUAMAAuAHAAZABmAA8AGgAMAE0AYQBjAGkAbgB0AG8AcwBoACAASABEABIAS1VzZXJzL2RlcnJpYy9CaWJsaW9ncmFwaHkvRmlsZXMvQXBwbGUgSW5jLl8yMDEwX0tleW5vdGUgJzA5IFVzZXIgR3VpZGUwLnBkZgAAEwABLwAAFQACAA3//wAAgAXSHB0eH1gkY2xhc3Nlc1okY2xhc3NuYW1lox8gIV1OU011dGFibGVEYXRhVk5TRGF0YVhOU09iamVjdF8QRC4uLy4uL0JpYmxpb2dyYXBoeS9GaWxlcy9BcHBsZSBJbmMuXzIwMTBfS2V5bm90ZSAnMDkgVXNlciBHdWlkZTAucGRm0hwdJCWiJSFcTlNEaWN0aW9uYXJ5EgABhqBfEA9OU0tleWVkQXJjaGl2ZXIACAARABYAHwAoADIANQA6ADwARQBLAFIAXQBlAGwAbwBxAHMAdgB4AHoAfACGAJMAmACgApoCnAKhAqoCtQK5AscCzgLXAx4DIwMmAzMDOAAAAAAAAAIBAAAAAAAAACgAAAAAAAAAAAAAAAAAAANK}}
@book{Apple:numbers:2010,
Author = {{Apple Inc.}},
Date-Added = {2011-03-21 17:19:42 +0100},
Date-Modified = {2011-03-21 17:19:42 +0100},
Publisher = {{Apple Inc.}},
Title = {Numbers '09 User Guide},
Year = {2010},
Bdsk-File-1 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAfIAAAAAAfIAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfTnVtYiM0M0VCNjEucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ+thyUqocgAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqaYgAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX051bWIjNDNFQjYxLnBkZgAOAFYAKgBBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAE4AdQBtAGIAZQByAHMAIAAnADAAOQAgAFUAcwBlAHIAIABHAHUAaQBkAGUALgBwAGQAZgAPABoADABNAGEAYwBpAG4AdABvAHMAaAAgAEgARAASAEpVc2Vycy9kZXJyaWMvQmlibGlvZ3JhcGh5L0ZpbGVzL0FwcGxlIEluYy5fMjAxMF9OdW1iZXJzICcwOSBVc2VyIEd1aWRlLnBkZgATAAEvAAAVAAIADf//AACABdIcHR4fWCRjbGFzc2VzWiRjbGFzc25hbWWjHyAhXU5TTXV0YWJsZURhdGFWTlNEYXRhWE5TT2JqZWN0XxBDLi4vLi4vQmlibGlvZ3JhcGh5L0ZpbGVzL0FwcGxlIEluYy5fMjAxMF9OdW1iZXJzICcwOSBVc2VyIEd1aWRlLnBkZtIcHSQloiUhXE5TRGljdGlvbmFyeRIAAYagXxAPTlNLZXllZEFyY2hpdmVyAAgAEQAWAB8AKAAyADUAOgA8AEUASwBSAF0AZQBsAG8AcQBzAHYAeAB6AHwAhgCTAJgAoAKWApgCnQKmArECtQLDAsoC0wMZAx4DIQMuAzMAAAAAAAACAQAAAAAAAAAoAAAAAAAAAAAAAAAAAAADRQ==},
Bdsk-File-2 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAfYAAAAAAfYAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfTnVtYiM0NkUzN0QucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARuN9yUqikwAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqUgwAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX051bWIjNDZFMzdELnBkZgAOAFgAKwBBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAE4AdQBtAGIAZQByAHMAIAAnADAAOQAgAFUAcwBlAHIAIABHAHUAaQBkAGUAMAAuAHAAZABmAA8AGgAMAE0AYQBjAGkAbgB0AG8AcwBoACAASABEABIAS1VzZXJzL2RlcnJpYy9CaWJsaW9ncmFwaHkvRmlsZXMvQXBwbGUgSW5jLl8yMDEwX051bWJlcnMgJzA5IFVzZXIgR3VpZGUwLnBkZgAAEwABLwAAFQACAA3//wAAgAXSHB0eH1gkY2xhc3Nlc1okY2xhc3NuYW1lox8gIV1OU011dGFibGVEYXRhVk5TRGF0YVhOU09iamVjdF8QRC4uLy4uL0JpYmxpb2dyYXBoeS9GaWxlcy9BcHBsZSBJbmMuXzIwMTBfTnVtYmVycyAnMDkgVXNlciBHdWlkZTAucGRm0hwdJCWiJSFcTlNEaWN0aW9uYXJ5EgABhqBfEA9OU0tleWVkQXJjaGl2ZXIACAARABYAHwAoADIANQA6ADwARQBLAFIAXQBlAGwAbwBxAHMAdgB4AHoAfACGAJMAmACgApoCnAKhAqoCtQK5AscCzgLXAx4DIwMmAzMDOAAAAAAAAAIBAAAAAAAAACgAAAAAAAAAAAAAAAAAAANK}}
@book{Apple:pages:2010,
Author = {{Apple Inc.}},
Date-Added = {2011-03-10 10:56:56 +0100},
Date-Modified = {2011-03-10 10:56:56 +0100},
Publisher = {{Apple Inc.}},
Title = {Pages '09 User Guide},
Year = {2010},
Bdsk-File-1 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAewAAAAAAewAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfUGFnZSM0M0RGNzkucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ995yUqizgAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqUvgAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX1BhZ2UjNDNERjc5LnBkZgAOAFIAKABBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAFAAYQBnAGUAcwAgACcAMAA5ACAAVQBzAGUAcgAgAEcAdQBpAGQAZQAuAHAAZABmAA8AGgAMAE0AYQBjAGkAbgB0AG8AcwBoACAASABEABIASFVzZXJzL2RlcnJpYy9CaWJsaW9ncmFwaHkvRmlsZXMvQXBwbGUgSW5jLl8yMDEwX1BhZ2VzICcwOSBVc2VyIEd1aWRlLnBkZgATAAEvAAAVAAIADf//AACABdIcHR4fWCRjbGFzc2VzWiRjbGFzc25hbWWjHyAhXU5TTXV0YWJsZURhdGFWTlNEYXRhWE5TT2JqZWN0XxBBLi4vLi4vQmlibGlvZ3JhcGh5L0ZpbGVzL0FwcGxlIEluYy5fMjAxMF9QYWdlcyAnMDkgVXNlciBHdWlkZS5wZGbSHB0kJaIlIVxOU0RpY3Rpb25hcnkSAAGGoF8QD05TS2V5ZWRBcmNoaXZlcgAIABEAFgAfACgAMgA1ADoAPABFAEsAUgBdAGUAbABvAHEAcwB2AHgAegB8AIYAkwCYAKACkAKSApcCoAKrAq8CvQLEAs0DEQMWAxkDJgMrAAAAAAAAAgEAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAz0=},
Bdsk-File-2 = {YnBsaXN0MDDUAQIDBAUIJidUJHRvcFgkb2JqZWN0c1gkdmVyc2lvblkkYXJjaGl2ZXLRBgdUcm9vdIABqAkKFRYXGyIjVSRudWxs0wsMDQ4RFFpOUy5vYmplY3RzV05TLmtleXNWJGNsYXNzog8QgASABqISE4ACgAOAB1lhbGlhc0RhdGFccmVsYXRpdmVQYXRo0hgNGRpXTlMuZGF0YU8RAfAAAAAAAfAAAgAADE1hY2ludG9zaCBIRAAAAAAAAAAAAAAAAAAAAMjMzzBIKwAAADQGiB9BcHBsZSBJbmMuXzIwMTBfUGFnZSM0NkUzOUEucGRmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARuOayUqirgAAAAAAAAAAAAIAAwAACSAAAAAAAAAAAAAAAAAAAAAFRmlsZXMAABAACAAAyMyzEAAAABEACAAAyUqUngAAAAEAEAA0BogANAaGAAPAAwAAkZEAAgBMTWFjaW50b3NoIEhEOlVzZXJzOmRlcnJpYzpCaWJsaW9ncmFwaHk6RmlsZXM6QXBwbGUgSW5jLl8yMDEwX1BhZ2UjNDZFMzlBLnBkZgAOAFQAKQBBAHAAcABsAGUAIABJAG4AYwAuAF8AMgAwADEAMABfAFAAYQBnAGUAcwAgACcAMAA5ACAAVQBzAGUAcgAgAEcAdQBpAGQAZQAwAC4AcABkAGYADwAaAAwATQBhAGMAaQBuAHQAbwBzAGgAIABIAEQAEgBJVXNlcnMvZGVycmljL0JpYmxpb2dyYXBoeS9GaWxlcy9BcHBsZSBJbmMuXzIwMTBfUGFnZXMgJzA5IFVzZXIgR3VpZGUwLnBkZgAAEwABLwAAFQACAA3//wAAgAXSHB0eH1gkY2xhc3Nlc1okY2xhc3NuYW1lox8gIV1OU011dGFibGVEYXRhVk5TRGF0YVhOU09iamVjdF8QQi4uLy4uL0JpYmxpb2dyYXBoeS9GaWxlcy9BcHBsZSBJbmMuXzIwMTBfUGFnZXMgJzA5IFVzZXIgR3VpZGUwLnBkZtIcHSQloiUhXE5TRGljdGlvbmFyeRIAAYagXxAPTlNLZXllZEFyY2hpdmVyAAgAEQAWAB8AKAAyADUAOgA8AEUASwBSAF0AZQBsAG8AcQBzAHYAeAB6AHwAhgCTAJgAoAKUApYCmwKkAq8CswLBAsgC0QMWAxsDHgMrAzAAAAAAAAACAQAAAAAAAAAoAAAAAAAAAAAAAAAAAAADQg==}}

502
cleanthesis.sty Normal file
View File

@@ -0,0 +1,502 @@
% **************************************************
% Clean Thesis
% -- A LaTeX Style for Thesis Documents --
%
% Copyright (C) 2011 Ricardo Langner
% **************************************************
%
% Readme:
% ----------------------------------------
% *** Clean, Simple, Elegant ***
% "Clean Thesis" is a LaTeX style for thesis documents, developed
% for my diplom thesis (Diplomarbeit). The style can be understood
% as my personal compromise — a typical clean looking scientific
% document combined and polished with minor beautifications.
%
% The design of this "Clean Thesis" style is inspired
% by user guide documents from Apple Inc.
%
% Note: If you are looking for an exact and correct style regarding
% typographic rules, please have a look at the "Classic Thesis Style"
% (see http://www.miede.de/index.php?page=classicthesis).
%
% *** Donation = Postcard ***
% Based on the idea of Andr\'e Miede: If you like the "Clean Thesis"
% style I would be very pleased about a donation in the form of a
% POSTCARD. You can find my address at http://cleanthesis.der-ric.de/
% as well as in the file Clean-Thesis.pdf. I am going to collect all
% postcards and exhibit them at the website I mentioned.
%
% *** Idea and Inspiration ***
% The idea of providing my customized style for thesis documents
% passed through my mind while writing my own thesis. Motivated and
% inspired by the superb "Classic Thesis Style"
% (see http://www.miede.de/index.php?page=classicthesis) by Andr\'e Miede
% (thanks to Andr\'e for doing a great job) I decided to collect all
% design and style related functionality in a separate LaTeX style and
% provide this style to other thesis writers.
%
%
% License Information:
% ----------------------------------------
% "Clean Thesis" is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% "Clean Thesis" is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% **************************************************
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{cleanthesis}[2011/05/27 v0.1b Clean-looking thesis style inspired by Apple's user guide documents]
\RequirePackage{ifthen}
\newboolean{@sansserif}
\newboolean{@colorbw}
\newboolean{@colorreduced}
\newboolean{@figurecaptionoutside}
\newboolean{@sectionlabeloutside}
\newboolean{@subsectionlabeloutside}
% **************************************************
% Style Options
% **************************************************
\DeclareOption{sansserif}{\setboolean{@sansserif}{true}}
\DeclareOption{colorbw}{\setboolean{@colorbw}{true}}
\DeclareOption{colorreduced}{\setboolean{@colorreduced}{true}}
\DeclareOption{figurecaptionoutside}{\setboolean{@figurecaptionoutside}{true}}
\DeclareOption{sectionlabeloutside}{\setboolean{@sectionlabeloutside}{true}}
\DeclareOption{subsectionlabeloutside}{\setboolean{@subsectionlabeloutside}{true}}
\DeclareOption*{%
\PackageWarning{cleanthesis}{Unknown option \CurrentOption}%
}
\ProcessOptions\relax % executes the code for each option
% **************************************************
% Color Definitions
% **************************************************
\RequirePackage[dvipsnames]{xcolor}
% general clean thesis colors
\definecolor{cthesisblack}{gray}{.05}
\definecolor{cthesisgraylight}{gray}{.8}
\definecolor{cthesismaincolor}{cmyk}{1, .50, .10, .01}
\definecolor{cthesisaccessorycolor}{cmyk}{.18, .98, .18, 0}
% footer colors
\colorlet{cthesiscolorfooterpage}{cthesisblack}
\colorlet{cthesiscolorfooterline}{cthesismaincolor}
\colorlet{cthesiscolorfootermark}{cthesisblack}
\colorlet{cthesiscolorfootertitle}{cthesismaincolor}
% chapter colors
\colorlet{cthesiscolorchapternum}{cthesismaincolor}
\colorlet{cthesiscolorchapterline}{cthesismaincolor}
% text colors
\colorlet{cthesiscolorsection}{cthesismaincolor}
\colorlet{cthesiscolorsubsection}{cthesismaincolor}
\colorlet{cthesiscolorfloatlabel}{cthesisaccessorycolor}
\colorlet{cthesiscolorlistlabel}{cthesismaincolor}
\ifthenelse{\boolean{@colorbw}}%
{%
\setboolean{@colorreduced}{true}%
%
\colorlet{cthesiscolorchapternum}{cthesisblack}%
\colorlet{cthesiscolorchapterline}{cthesisblack}%
%
\colorlet{cthesiscolorsection}{cthesisblack}%
\colorlet{cthesiscolorfloatlabel}{cthesisblack}%
}{}
\ifthenelse{\boolean{@colorreduced}}%
{%
\colorlet{cthesiscolorfooterline}{cthesisblack}
\colorlet{cthesiscolorfootertitle}{cthesisblack}
\colorlet{cthesiscolorsubsection}{cthesisblack}
\colorlet{cthesiscolorlistlabel}{cthesisblack}
}{}
% **************************************************
% Font Definitions (see http://www.tug.dk/FontCatalogue/)
% **************************************************
\RequirePackage[T1]{fontenc} % font types and character verification
\ifthenelse{\boolean{@sansserif}}%
{%
% Using sans-serif fonts
%
%\RequirePackage{helvet} % Font: Helvetica
%\RequirePackage{nimbus} % Font: Nimbus Sans, a clone of the Helvetica
\RequirePackage{tgheros} % Font: TEX Gyre Heros
%\RequirePackage{libertine} % Font: Biolinum, the standard sans serif typeface with the Libertine package
%\RequirePackage[scaled]{berasans} % Font: Bera Sans, a a version of Bitstream Vera Sans slightly enhanced
\renewcommand*\familydefault{\sfdefault}%
}{%
% Using serif fonts
%
\RequirePackage{lmodern} % font set: Latin Modern
\RequirePackage{charter} % font set: Charter
%\RequirePackage{fourier} % font set: (basically improved utopia)
}
% **************************************************
% Load Packages
% **************************************************
\RequirePackage{fixltx2e} % packages provides fixes to LaTeX2e
\RequirePackage{microtype} % typographic tuning
\RequirePackage{setspace} % for line spacing, e.g. \onehalfspacing
\RequirePackage[]{graphicx} % graphics import features
\RequirePackage{fancyhdr} % for header and footer modifications
\RequirePackage{enumitem} % for simple list modifications
\RequirePackage{blindtext} % package for blind text
\RequirePackage{textcomp} % different symbols
\RequirePackage{hyperref} % interactive link inside the document
\RequirePackage{titlesec} % to modify sectioning commands, e.g. chapter
%
\RequirePackage[ % modify figure and table captions
font={small}, % - small font size
labelfont={bf,sf,color=cthesiscolorfloatlabel},% - label in bold, sans-serif and magenta
labelsep=endash, % - separator
singlelinecheck=false % - no centered single-lined captions
]{caption}[2008/08/24]
\ifthenelse{\boolean{@figurecaptionoutside}}%
{%
\DeclareCaptionFormat{llap}{\llap{#1#2}#3\par}%
\captionsetup{format=llap,labelsep=quad,singlelinecheck=false}%
}{}
%
\RequirePackage[ % page layout modifications
paper=a4paper, % - use A4 paper size
%scale={0.86,0.94}, % - total body size (h,v)
%scale={0.86,0.94}, % - total body size (h,v)
nohead, % - no header
includefoot, % - include footer space
includemp, % - include side note space
bindingoffset=0.5cm, % - binding correction
top=2.25cm, % - total body: top margin
left=3.75cm, % - total body: left margin (odd pages)
right=0.75cm, % - total body: right margin (odd pages)
bottom=1.5cm, % - total body: bottom margin
marginparwidth=1.75cm, % - width for side note
marginparsep=10pt, % - space between notes and body text (content)
footskip=2cm, % - footer skip size
]{geometry}
%
\RequirePackage[ % advanced quotes
strict=true, % - warning are errors now
style=german % - german quotes
]{csquotes}
%
\RequirePackage[ % use biblatex for bibliography
% backend=biber, % - use biber backend (bibtex replacement)
bibencoding=utf8, % - use auto file encode
style=alphabetic, % - use alphabetic (or numeric) bib style
natbib=true, % - allow natbib commands
hyperref=true, % - activate hyperref support
backref=true, % - activate backrefs
isbn=false, % - don't show isbn tags
url=false, % - don't show url tags
doi=false, % - don't show doi tags
urldate=long, % - display type for dates
maxnames=3,%
minnames=1,%
maxbibnames=5,%
minbibnames=3,%
maxcitenames=2,%
mincitenames=1%
]{biblatex}
\bibliography{bib-refs}
\DefineBibliographyStrings{ngerman}{%
andothers = {{et\,al\adddot}}, % 'et al.' instead of 'u.a.'
backrefpage = {{zitiert auf Seite}},%
backrefpages = {{zitiert auf den Seiten}},%
}
% **************************************************
% Text Format
% **************************************************
\setstretch{1.2} % value for line spacing, use \setstretch{} or \singlespacing or \onehalfspacing or \doublespacing
\setlength{\parindent}{0em} % value for paragraph indentation
\clubpenalty = 10000 % prevent single lines at the beginning of a paragraph (Schusterjungen)
\widowpenalty = 10000 % prevent single lines at the end of a paragraph (Hurenkinder)
\displaywidowpenalty = 10000 %
% **************************************************
% List Definitions
% **************************************************
\newenvironment{my_list}%
{\begin{enumerate}%
\setlength{\itemsep}{1pt}%
\setlength{\parskip}{0pt}%
\setlength{\parsep}{0pt}%
}%
{\end{enumerate}}
%
\newenvironment{my_list_num}
{\begin{enumerate}[topsep=-5pt,partopsep=0pt,parsep=2pt,itemsep=3pt]}
{\end{enumerate}}%
\newenvironment{my_list_item}
{\begin{itemize}[topsep=-5pt,partopsep=0pt,parsep=2pt,itemsep=3pt]}
{\end{itemize}}%
\newenvironment{ct_version_list}
{\begin{itemize}[topsep=-5pt,partopsep=0pt,parsep=2pt,itemsep=3pt]}
{\end{itemize}}%
\newenvironment{ct_version_list_sub}
{\begin{itemize}[topsep=-0pt,partopsep=0pt,parsep=0pt,itemsep=0pt]}
{\end{itemize}}%
\renewcommand{\descriptionlabel}[1]{%
\hspace*{\labelsep}%
\color{cthesiscolorlistlabel}%
\tgherosfont\textbf{#1}%
}
\newenvironment{my_list_desc}
{\begin{description}[%
style=multiline,%
topsep=-5pt,%
leftmargin=3cm,%
partopsep=0pt,%
parsep=2pt,%
itemsep=3pt%
]}
{\end{description}}%
% **************************************************
% Header and Footer
% **************************************************
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{%
\markboth{%
\footnotesize%
{\color{cthesiscolorfootermark}\textbf{\chaptername\ \thechapter}}%
\quad%
{\color{cthesiscolorfootertitle}#1}%
}{}%
}
\renewcommand{\sectionmark}[1]{%
\markright{%
\footnotesize%
{\color{cthesiscolorfootermark}\textbf{\thesection}}%
\quad%
{\color{cthesiscolorfootertitle}#1}%
}%
}
%
\fancypagestyle{plain}{%
\fancyhf{}
\fancyfootoffset[OR]{1.85cm}
\fancyfoot[OR]{%
{\ }\tgherosfont%
{\color{cthesiscolorfooterline}\rule[-90pt]{1.25pt}{100pt}}%
\hspace*{10pt}\begin{minipage}[b]{1.5cm}%
\color{cthesiscolorfooterpage}\normalsize\textbf{\thepage}%
\end{minipage}%
}
\fancyfootoffset[EL]{1.85cm}
\fancyfoot[EL]{%
\tgherosfont%
\begin{minipage}[b]{1.5cm}%
\raggedleft\color{cthesiscolorfooterpage}\normalsize\textbf{\thepage}%
\end{minipage}%
\hspace*{10pt}{\color{cthesiscolorfooterline}\rule[-90pt]{1.25pt}{100pt}}%
}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
%
\fancypagestyle{maincontentstyle}{%
\pagestyle{plain}
\fancyhf{}
\fancyfootoffset[OR]{1.85cm}
\fancyfoot[OR]{%
{\ }\tgherosfont\footnotesize%
\rightmark%
\hspace*{0.75cm}{\color{cthesiscolorfooterline}\rule[-90pt]{1.25pt}{100pt}}%
\hspace*{10pt}\begin{minipage}[b]{1.5cm}%
\color{cthesiscolorfooterpage}\normalsize\textbf{\thepage}%
\end{minipage}%
}
\fancyfootoffset[EL]{1.85cm}
\fancyfoot[EL]{%
\tgherosfont\footnotesize%
\begin{minipage}[b]{1.5cm}%
\raggedleft\color{cthesiscolorfooterpage}\normalsize\textbf{\thepage}%
\end{minipage}%
\footnotesize%
\hspace*{10pt}{\color{cthesiscolorfooterline}\rule[-90pt]{1.25pt}{100pt}}%
\hspace*{0.75cm}\leftmark%
}
}
% **************************************************
% New Commands
% **************************************************
% TODO command
\definecolor{color_todo}{rgb}{.6,.8,.2}
\newcommand{\TODO}[1]{{\color{color_todo}\textbf{[TODO #1]}}}
%
%
% ref commands, e.g. for images, tables and text labels
% --------------------------------------------------
% RESULT = (siehe Tab. 12.4)
\newcommand{\tabref}[1]{(siehe Tab.~\ref{#1})}
%
% RESULT = (siehe Tab. 12.4)
\newcommand{\tableref}[1]{(siehe Tab.~\ref{#1} Seite~\pageref{#1})}
%
% --------------------------------------------------
% RESULT = (siehe 3.4)
\newcommand{\tref}[1]{(siehe \ref{#1})}
%
% RESULT = Abschnitt 3.4
\newcommand{\treft}[1]{Abschnitt~\ref{#1}}
%
% RESULT = (siehe 3.4, Seite 12)
\newcommand{\textref}[1]{(siehe \ref{#1}, Seite~\pageref{#1})}
%
% RESULT = Abschnitt 3.4 (siehe Seite 12)
\newcommand{\textreft}[1]{Abschnitt~\ref{#1} (siehe Seite~\pageref{#1})}
%
% --------------------------------------------------
% RESULT = (siehe Abb. 10.4)
\newcommand{\fref}[1]{(siehe Abb.~\ref{#1})}
%
% RESULT = (siehe Abb. 10.4 b)
\newcommand{\frefadd}[2]{(siehe Abb.~\ref{#1}~#2)}
%
% RESULT = (siehe Abb. 10.4, Seite 12)
\newcommand{\figref}[1]{(siehe Abb.~\ref{#1}, Seite~\pageref{#1})}
%
% RESULT = (siehe Abb. 10.4 b, Seite 12)
\newcommand{\figrefadd}[2]{(siehe Abb.~\ref{#1}~#2, Seite~\pageref{#1})}
%
% RESULT = Abbildung 10.4
\newcommand{\figreft}[1]{Abbildung~\ref{#1}}
%
% RESULT = Abbildung 10.4 b
\newcommand{\figrefaddt}[2]{Abbildung~\ref{#1}~#2}
%
% --------------------------------------------------
% RESULT = (siehe Seite 12)
\newcommand{\seepage}[1]{(siehe Seite~\pageref{#1})}
% **************************************************
% Sectioning Commands
% **************************************************
% own font definitions
\newcommand{\helv}{\fontfamily{phv}\fontsize{9}{11}\selectfont}
\newcommand{\book}{\fontfamily{pbk}\fontseries{m}\fontsize{11}{13}\selectfont}
\newcommand{\tgherosfont}{\fontfamily{qhv}\selectfont}
\newcommand{\thesischapterfont}{\color{cthesisblack}\huge \fontfamily{phv}\selectfont}
%\newcommand{\thesissectionfont}{\color{cthesismaincolor}\LARGE\bfseries \tgherosfont}
\newcommand{\thesissectionfont}{\color{cthesiscolorsection}\LARGE \tgherosfont}
\newcommand{\thesissubsectionfont}{\color{cthesiscolorsubsection}\Large \tgherosfont}
%
% headings
\setkomafont{chapter}{\thesischapterfont} % for chapter entries
\setkomafont{section}{\thesissectionfont} % for section entries
\setkomafont{subsection}{\thesissubsectionfont} % for section entries
\addtokomafont{subsubsection}{\tgherosfont}
\addtokomafont{paragraph}{\tgherosfont}
%\setkomafont{subsection}{\large} % for subsection entries
% usage: \titleformat{⟨command)}[⟨shape⟩]{⟨format⟩}{⟨label⟩}{⟨sep⟩}{⟨before⟩}[⟨after⟩]
\titleformat{\chapter}[display]%
{\usekomafont{chapter}}%
{%
\vspace{-8em}
\raggedleft{%
{\color{cthesiscolorchapterline}\rule[-5pt]{2pt}{5cm}}\quad%
{\color{cthesiscolorchapternum}\fontsize{60}{60}\selectfont\thechapter}%
}%
}%
{-2.1em}%
{\raggedright}%
[]
% format the section
\ifthenelse{\boolean{@sectionlabeloutside}}%
{%
\titleformat{\section}[hang]%
{\usekomafont{section}}%
{\color{cthesisblack}\thesection\hspace*{10pt}}%
{0pt}%
{\raggedright}%
[]
}{%
\titleformat{\section}[block]%
{\usekomafont{section}}%
{\color{cthesisblack}\thesection\hspace*{10pt}}%
{0pt}%
{\raggedright}%
[]
}
% format the subsection
\ifthenelse{\boolean{@subsectionlabeloutside}}%
{%
\titleformat{\subsection}[hang]%
{\usekomafont{subsection}}%
{\color{cthesisblack}\thesubsection\hspace*{10pt}}%
{0pt}%
{\raggedright}%
[]
}{%
\titleformat{\subsection}[block]%
{\usekomafont{subsection}}%
{\color{cthesisblack}\thesubsection\hspace*{10pt}}%
{0pt}%
{\raggedright}%
[]
}
% Clean chapter quotations
\newcommand{\hugequote}{%
{\book\fontsize{75}{80}\selectfont%
\hspace*{-.475em}\color{cthesisgraylight}%
\textit{\glqq}%
\vskip -.26em}%
}
\newcommand{\cleanchapterquote}[3]{%
\begin{minipage}{.865\textwidth}%
\begin{flushright}
\begin{minipage}{.65\textwidth}%
\begin{flushleft}
{\hugequote}\textit{#1}
\end{flushleft}
\begin{flushright}
--- \textbf{#2} \\
#3
\end{flushright}
\end{minipage}%
\end{flushright}
\end{minipage}%
\bigskip
}
% Clean Quotation environment
\newenvironment{thesis_quotation}%
{%
\begin{minipage}{.865\textwidth}%
\begin{flushright}
\begin{minipage}{.95\textwidth}%
}%
{%
\end{minipage}%
\end{flushright}
\end{minipage}%
}%
% Clean signs around word origins in definitions
%\newcommand{\cthesisorigin}[1]{\textsf{\textlangle}#1\textsf{\textrangle}}

14
content/abstract.tex Normal file
View File

@@ -0,0 +1,14 @@
% !TEX root = Clean-Thesis.tex
%
\pdfbookmark[0]{Abstract}{Abstract}
\chapter*{Abstract}
\label{sec:abstract}
\vspace*{-10mm}
\blindtext
\vspace*{20mm}
{\usekomafont{chapter}Abstract (different language)}\label{sec:abstract-diff} \\
\blindtext

View File

@@ -0,0 +1,8 @@
% !TEX root = Clean-Thesis.tex
%
\pdfbookmark[0]{Acknowledgement}{Acknowledgement}
\chapter*{Acknowledgement}
\label{sec:acknowledgement}
\vspace*{-10mm}
\Blindtext[2][2]

View File

@@ -0,0 +1,28 @@
% !TEX root = ../Clean-Thesis.tex
%
\chapter{Concepts}
\label{sec:concepts}
\cleanchapterquote{Users do not care about what is inside the box, as long as the box does what they need done.}{Jef Raskin}{about Human Computer Interfaces}
\Blindtext[2][1]
\section{Concepts Section 1}
\label{sec:concepts:sec1}
\Blindtext[2][2]
\section{Concepts Section 2}
\label{sec:concepts:sec2}
\Blindtext[3][2]
\section{Concepts Section 3}
\label{sec:concepts:sec3}
\Blindtext[4][2]
\section{Conclusion}
\label{sec:concepts:conclusion}
\Blindtext[2][1]

View File

@@ -0,0 +1,21 @@
% !TEX root = ../Clean-Thesis.tex
%
\chapter{Conclusion}
\label{sec:conclusion}
\Blindtext[2][1]
\section{System Section 1}
\label{sec:conclusion:sec1}
\Blindtext[2][2]
\section{System Section 2}
\label{sec:conclusion:sec2}
\Blindtext[3][2]
\section{Future Work}
\label{sec:conclusion:future}
\Blindtext[2][2]

View File

@@ -0,0 +1,45 @@
% !TEX root = ../Clean-Thesis.tex
%
\chapter{Introduction}
\label{sec:intro}
\cleanchapterquote{You cant do better design with a computer, but you can speed up your work enormously.}{Wim Crouwel}{(Graphic designer and typographer)}
\Blindtext[2][2]
\section{Postcards: My Address}
\label{sec:intro:address}
\textbf{Ricardo Langner} \\
Bunsenstr. 9 \\
39124 Magdeburg \\
Germany
\section{Motivation and Problem Statement}
\label{sec:intro:motivation}
\Blindtext[3][1]
\section{Results}
\label{sec:intro:results}
\Blindtext[1][2]
\section{Thesis Structure}
\label{sec:intro:structure}
\textbf{Chapter \ref{sec:related}} \\[0.2em]
\blindtext
\textbf{Chapter \ref{sec:system}} \\[0.2em]
\blindtext
\textbf{Chapter \ref{sec:concepts}} \\[0.2em]
\blindtext
\textbf{Chapter \ref{sec:concepts}} \\[0.2em]
\blindtext
\textbf{Chapter \ref{sec:conclusion}} \\[0.2em]
\blindtext

View File

@@ -0,0 +1,28 @@
% !TEX root = ../Clean-Thesis.tex
%
\chapter{Related Work}
\label{sec:related}
\cleanchapterquote{A picture is worth a thousand words. An interface is worth a thousand pictures.}{Ben Shneiderman}{(Professor for Computer Science)}
\Blindtext[2][1]
\section{Related Work Section 1}
\label{sec:related:sec1}
\Blindtext[2][2]
\section{Related Work Section 2}
\label{sec:related:sec2}
\Blindtext[3][2]
\section{Related Work Section 3}
\label{sec:related:sec3}
\Blindtext[4][2]
\section{Conclusion}
\label{sec:related:conclusion}
\Blindtext[2][1]

View File

@@ -0,0 +1,44 @@
% !TEX root = ../Clean-Thesis.tex
%
\chapter{System}
\label{sec:system}
\cleanchapterquote{Innovation distinguishes between a leader and a follower.}{Steve Jobs}{(CEO Apple Inc.)}
\Blindtext[2][1]
\section{System Section 1}
\label{sec:system:sec1}
\Blindtext[1][2]
\begin{figure}[htb]
\includegraphics[width=\textwidth]{gfx/Clean-Thesis-Figure}
\caption{Figure example: \textit{(a)} example part one, \textit{(c)} example part two; \textit{(c)} example part three}
\label{fig:system:example1}
\end{figure}
\Blindtext[1][2]
\section{System Section 2}
\label{sec:system:sec2}
\Blindtext[1][2]
\begin{figure}[htb]
\includegraphics[width=\textwidth]{gfx/Clean-Thesis-Figure}
\caption{Another Figure example: \textit{(a)} example part one, \textit{(c)} example part two; \textit{(c)} example part three}
\label{fig:system:example2}
\end{figure}
\Blindtext[2][2]
\section{System Section 3}
\label{sec:system:sec3}
\Blindtext[4][2]
\section{Conclusion}
\label{sec:system:conclusion}
\Blindtext[2][1]

11
content/colophon.tex Normal file
View File

@@ -0,0 +1,11 @@
% !TEX root = ../Clean-Thesis.tex
%
\pagestyle{empty}
\hfill
\vfill
\pdfbookmark[0]{Colophon}{Colophon}
\section*{Colophon}
This thesis was typeset with \LaTeXe\ using the \textit{Clean Thesis} style. The design of this style is inspired by user guide documents from Apple Inc.
Download the \textit{Clean Thesis} style at \url{http://cleanthesis.der-ric.de/}.

27
content/declaration.tex Normal file
View File

@@ -0,0 +1,27 @@
% !TEX root = ../Clean-Thesis.tex
%
%************************************************
% Declaration
%************************************************
\pdfbookmark[0]{Declaration}{Declaration}
\chapter*{Declaration}
\label{sec:declaration}
\thispagestyle{empty}
You can put your declaration here, to declare that you have completed your work solely and only with the help of the references you mentioned.
\bigskip
\noindent\textit{\thesisUniversityCity, \thesisDate}
\smallskip
\begin{flushright}
\begin{minipage}{5cm}
\rule{\textwidth}{1pt}
\centering\thesisName
\end{minipage}
\end{flushright}
%*****************************************
%*****************************************

84
content/titlepages.tex Normal file
View File

@@ -0,0 +1,84 @@
% !TEX root = Clean-Thesis.tex
%
% ------------------------------------ --> cover title page
\begin{titlepage}
\pdfbookmark[0]{Cover}{Cover}
\flushright
\hfill
\vfill
{\LARGE\thesisTitle} \par
\rule[5pt]{\textwidth}{.4pt} \par
{\Large\thesisName}
\vfill
\textit{\large\thesisDate} \\
Version: \thesisVersion
\end{titlepage}
% ------------------------------------ --> main title page
\begin{titlepage}
\pdfbookmark[0]{Titlepage}{Titlepage}
\tgherosfont
\centering
{\Large \thesisUniversity} \\[4mm]
\includegraphics[width=6cm]{gfx/Clean-Thesis-Logo} \\[2mm]
\textsf{\thesisUniversityDepartment} \\
\textsf{\thesisUniversityInstitute} \\
\textsf{\thesisUniversityGroup} \\
\vfill
{\large \thesisSubject} \\[5mm]
{\LARGE \color{cthesismaincolor}\textbf{\thesisTitle} \\[10mm]}
{\Large \thesisName} \\
\vfill
\begin{minipage}[t]{.27\textwidth}
\raggedleft
\textit{1. Reviewer}
\end{minipage}
\hspace*{15pt}
\begin{minipage}[t]{.65\textwidth}
{\Large \thesisFirstReviewer} \\
{\small \thesisFirstReviewerDepartment} \\[-1mm]
{\small \thesisFirstReviewerUniversity}
\end{minipage} \\[5mm]
\begin{minipage}[t]{.27\textwidth}
\raggedleft
\textit{2. Reviewer}
\end{minipage}
\hspace*{15pt}
\begin{minipage}[t]{.65\textwidth}
{\Large \thesisSecondReviewer} \\
{\small \thesisSecondReviewerDepartment} \\[-1mm]
{\small \thesisSecondReviewerUniversity}
\end{minipage} \\[10mm]
\begin{minipage}[t]{.27\textwidth}
\raggedleft
\textit{Supervisors}
\end{minipage}
\hspace*{15pt}
\begin{minipage}[t]{.65\textwidth}
\thesisFirstSupervisor\ and \thesisSecondSupervisor
\end{minipage} \\[10mm]
\thesisDate \\
\end{titlepage}
% ------------------------------------ --> lower title back for single page layout
\hfill
\vfill
\small
\textbf{\thesisName} \\
\textit{\thesisTitle} \\
\thesisSubject, \thesisDate \\
Reviewers: \thesisFirstReviewer\ and \thesisSecondReviewer \\
Supervisors: \thesisFirstSupervisor\ and \thesisSecondSupervisor \\[1.5em]
\textbf{\thesisUniversity} \\
\textit{\thesisUniversityGroup} \\
\thesisUniversityInstitute \\
\thesisUniversityDepartment \\
\thesisUniversityStreetAddress \\
\thesisUniversityPostalCode\ and \thesisUniversityCity

2687
gfx/Clean-Thesis-Figure.pdf Normal file

File diff suppressed because one or more lines are too long

2669
gfx/Clean-Thesis-Logo.pdf Normal file

File diff suppressed because one or more lines are too long