-
Notifications
You must be signed in to change notification settings - Fork 2
/
layout.sty
94 lines (82 loc) · 2.98 KB
/
layout.sty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
% Codierung
\usepackage{selinput}
\SelectInputMappings{
adieresis={ä},
germandbls={ß},
}
\usepackage[english,ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
% Kopf-/Fusszeilen
\usepackage{scrlayer-scrpage}
\usepackage{lastpage}
\setkomafont{pageheadfoot}{\small\sffamily}
\pagestyle{scrheadings}
\lohead*{}
\cohead*{}
\rohead*{}
\lofoot*{}
\cofoot*{}
\rofoot*{Seite \thepage \hspace{1pt} von \pageref{LastPage}}
% Bilder
\usepackage{graphicx}
% Tabellen
\renewcommand{\arraystretch}{1.5}
\usepackage[table]{xcolor}
\usepackage{longtable}
\usepackage{tabularx}
% Abkürzungen
\usepackage{acronym}
% Hyperlinks
\usepackage[hidelinks]{hyperref}
% Glossar (Nach hyperref laden!)
\usepackage[xindy,toc]{glossaries}
% Querformat
\usepackage{pdflscape}
% Symbole
\usepackage{wasysym}
% Dummy-Text
\usepackage{blindtext}
% Quellcode
\definecolor{keywordcolor}{rgb}{0.5,0,0.35} % keyword color
\definecolor{stringcolor}{rgb}{0.6,0,0} % string color
\definecolor{commentcolor}{rgb}{0.25,0.5,0.35} % comment color
\definecolor{javadoccolor}{rgb}{0.25,0.35,0.75} % javadoc color
\usepackage{listings}
\lstset{language=Java}
\lstloadlanguages{Java} % language options
\lstset{
basicstyle=\ttfamily\footnotesize, % fontstyle
numbers=left, % linenumber placement
numberstyle=\tiny, % linenumber fontsize
numbersep=5pt, % how far the line-numbers are from the code
breaklines=true, % print linebreaks
backgroundcolor=\color{gray!10}, % background color
commentstyle=\color{commentcolor}, % comment color
morecomment=[s][\color{javadoccolor}]{/**}{*/}, % javadoc color
keywordstyle=\color{keywordcolor}, % keyword color
stringstyle=\color{stringcolor}, % string color
showstringspaces=false, % show spaces in a string
frame=single, % frame
tabsize=4, % tabstop
rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
title=\lstname, % title is name of source file
escapeinside={\%*}{*)}, % if you want to add LaTeX within your code
inputencoding=utf8, % encoding = utf8
extendedchars=true, % utf8 support
literate= % utf8 support
{á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1
{Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1
{à}{{\`a}}1 {è}{{\`e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1
{À}{{\`A}}1 {È}{{\'E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1
{ä}{{\"a}}1 {ë}{{\"e}}1 {ï}{{\"i}}1 {ö}{{\"o}}1 {ü}{{\"u}}1
{Ä}{{\"A}}1 {Ë}{{\"E}}1 {Ï}{{\"I}}1 {Ö}{{\"O}}1 {Ü}{{\"U}}1
{â}{{\^a}}1 {ê}{{\^e}}1 {î}{{\^i}}1 {ô}{{\^o}}1 {û}{{\^u}}1
{Â}{{\^A}}1 {Ê}{{\^E}}1 {Î}{{\^I}}1 {Ô}{{\^O}}1 {Û}{{\^U}}1
{œ}{{\oe}}1 {Œ}{{\OE}}1 {æ}{{\ae}}1 {Æ}{{\AE}}1 {ß}{{\ss}}1
{ç}{{\c c}}1 {Ç}{{\c C}}1 {ø}{{\o}}1 {å}{{\r a}}1 {Å}{{\r A}}1
{€}{{\EUR}}1 {£}{{\pounds}}1
}
% PDF einbinden
\usepackage{pdfpages}
\includepdfset{pages=-,noautoscale}