Introduced separate tex file (my-thesis-setup.tex) for the overall setup of the thesis document.
This commit is contained in:
74
my-thesis-setup.tex
Normal file
74
my-thesis-setup.tex
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
% !TEX root = thesis-example.tex
|
||||||
|
|
||||||
|
|
||||||
|
% **************************************************
|
||||||
|
% Files' Character Encoding
|
||||||
|
% **************************************************
|
||||||
|
\PassOptionsToPackage{utf8}{inputenc}
|
||||||
|
\usepackage{inputenc}
|
||||||
|
|
||||||
|
|
||||||
|
% **************************************************
|
||||||
|
% Information and Commands for Reuse
|
||||||
|
% **************************************************
|
||||||
|
\newcommand{\thesisTitle}{The Clean Thesis Style}
|
||||||
|
\newcommand{\thesisName}{Ricardo Langner}
|
||||||
|
\newcommand{\thesisSubject}{Documentation}
|
||||||
|
\newcommand{\thesisDate}{October 4, 2015}
|
||||||
|
\newcommand{\thesisVersion}{My First Draft}
|
||||||
|
|
||||||
|
\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}{Institute for Clean Thesis Dev}
|
||||||
|
\newcommand{\thesisUniversityGroup}{Clean Thesis Group (CTG)}
|
||||||
|
\newcommand{\thesisUniversityCity}{City}
|
||||||
|
\newcommand{\thesisUniversityStreetAddress}{Street address}
|
||||||
|
\newcommand{\thesisUniversityPostalCode}{Postal Code}
|
||||||
|
|
||||||
|
|
||||||
|
% **************************************************
|
||||||
|
% Debug LaTeX Information
|
||||||
|
% **************************************************
|
||||||
|
%\listfiles
|
||||||
|
|
||||||
|
|
||||||
|
% **************************************************
|
||||||
|
% Load and Configure Packages
|
||||||
|
% **************************************************
|
||||||
|
\usepackage[english]{babel} % babel system, adjust the language of the content
|
||||||
|
\PassOptionsToPackage{% setup clean thesis style
|
||||||
|
figuresep=colon,%
|
||||||
|
sansserif=false,%
|
||||||
|
hangfigurecaption=false,%
|
||||||
|
hangsection=true,%
|
||||||
|
hangsubsection=true,%
|
||||||
|
colorize=full,%
|
||||||
|
colortheme=bluemagenta,%
|
||||||
|
bibsys=bibtex,%
|
||||||
|
bibfile=bib-refs,%
|
||||||
|
bibstyle=alphabetic,%
|
||||||
|
}{cleanthesis}
|
||||||
|
\usepackage{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 %
|
||||||
|
}
|
@@ -2,82 +2,26 @@
|
|||||||
% Document Class Definition
|
% Document Class Definition
|
||||||
% **************************************************
|
% **************************************************
|
||||||
\documentclass[%
|
\documentclass[%
|
||||||
paper=A4, % paper size --> A4 is default in Germany
|
paper=A4, % paper size --> A4 is default in Germany
|
||||||
twoside=true, % onesite or twoside printing
|
twoside=true, % onesite or twoside printing
|
||||||
openright, % doublepage cleaning ends up right side
|
openright, % doublepage cleaning ends up right side
|
||||||
parskip=full, % spacing value / method for paragraphs
|
parskip=full, % spacing value / method for paragraphs
|
||||||
chapterprefix=true, % prefix for chapter marks
|
chapterprefix=true, % prefix for chapter marks
|
||||||
11pt, % font size
|
11pt, % font size
|
||||||
headings=normal, % size of headings
|
headings=normal, % size of headings
|
||||||
bibliography=totoc, % include bib in toc
|
bibliography=totoc, % include bib in toc
|
||||||
listof=totoc, % include listof entries in toc
|
listof=totoc, % include listof entries in toc
|
||||||
titlepage=on, % own page for each title page
|
titlepage=on, % own page for each title page
|
||||||
captions=tableabove, % display table captions above the float env
|
captions=tableabove, % display table captions above the float env
|
||||||
draft=false, % value for draft version
|
draft=false, % value for draft version
|
||||||
]{scrreprt}%
|
]{scrreprt}%
|
||||||
|
|
||||||
% **************************************************
|
|
||||||
% Debug LaTeX Information
|
|
||||||
% **************************************************
|
|
||||||
%\listfiles
|
|
||||||
|
|
||||||
% **************************************************
|
% **************************************************
|
||||||
% Information and Commands for Reuse
|
% Setup YOUR thesis document in this file !
|
||||||
% **************************************************
|
% **************************************************
|
||||||
\newcommand{\thesisTitle}{The Clean Thesis Style}
|
\input{my-thesis-setup}
|
||||||
\newcommand{\thesisName}{Ricardo Langner}
|
|
||||||
\newcommand{\thesisSubject}{Documentation}
|
|
||||||
\newcommand{\thesisDate}{August 26, 2015}
|
|
||||||
\newcommand{\thesisVersion}{My First Draft}
|
|
||||||
|
|
||||||
\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
|
|
||||||
figuresep=colon,%
|
|
||||||
sansserif=false,%
|
|
||||||
hangfigurecaption=false,%
|
|
||||||
hangsection=true,%
|
|
||||||
hangsubsection=true,%
|
|
||||||
colorize=full,%
|
|
||||||
colortheme=bluemagenta,%
|
|
||||||
bibsys=bibtex,%
|
|
||||||
bibfile=bib-refs,%
|
|
||||||
bibstyle=alphabetic,%
|
|
||||||
]{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
|
% Document CONTENT
|
||||||
|
Reference in New Issue
Block a user