diff options
Diffstat (limited to 'Master/texmf-dist/tex/latex/ku-template/ku-template.sty')
-rw-r--r-- | Master/texmf-dist/tex/latex/ku-template/ku-template.sty | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/ku-template/ku-template.sty b/Master/texmf-dist/tex/latex/ku-template/ku-template.sty new file mode 100644 index 00000000000..83b55232099 --- /dev/null +++ b/Master/texmf-dist/tex/latex/ku-template/ku-template.sty @@ -0,0 +1,45 @@ +%==========================================================================% +% KU-TEMPLATE PACKAGE +% ORIGINAL AUTHOR = Lucas Alexander Vindum Pedersen +% AUTHOR EMAIL = lucas@luxiius.net +% AUTHOR WEBSITE = LucasAlexander.org +% LAST EDITED = 2017-08-13 00:35 +% LICENCE = MIT (https://opensource.org/licenses/MIT) +%==========================================================================% + +% Package config +\ProvidesPackage{ku-template}[2017/08/13 v0.01] + +% Required Packages +\RequirePackage{wallpaper} +\RequirePackage{titling} + +% Language options +\DeclareOption{en}{\def\LANG{en}} +\DeclareOption{da}{\def\LANG{da}} + +% Faculty options +\DeclareOption{ku}{\def\FACULTY{ku}} +\DeclareOption{jur}{\def\FACULTY{jur}} +\DeclareOption{teo}{\def\FACULTY{teo}} +\DeclareOption{sun}{\def\FACULTY{sun}} +\DeclareOption{hum}{\def\FACULTY{hum}} +\DeclareOption{sam}{\def\FACULTY{sam}} +\DeclareOption{sci}{\def\FACULTY{sci}} + +% Default options +\ExecuteOptions{da} +\ExecuteOptions{ku} + +% Lets begin +\ProcessOptions\relax + + +% Insert our beautiful logo as a background +\ThisCenterWallPaper{1}{images/\FACULTY-\LANG.pdf} + +% Move our title to match with the new background +\setlength{\droptitle}{7.5cm} + + +\endinput
\ No newline at end of file |