Files
masterthesis-latex/masterthesis.cls
Jim Martens 15aabfa9ac Moved software and source code design to appendices
Additionally, the entire LaTeX setup was adapted for this use case.

Signed-off-by: Jim Martens <github@2martens.de>
2019-08-14 16:40:38 +02:00

20 lines
435 B
TeX

\NeedsTeXFormat{LaTeX2e} % specify required latex format
\ProvidesClass{masterthesis}[2019/01/03 Masterthesis Class]
% Fallback, pass all unknown options to base class
\DeclareOption*{
\PassOptionsToClass{\CurrentOption}{scrbook}
}
% Process given options
\ProcessOptions\relax
% Load base class
\LoadClass[a4paper,twoside=false,%
appendixprefix=true,numbers=noenddot]{scrbook}
% do some stuff
% mandatory last line
\endinput