-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththmpagestyles.sty
88 lines (77 loc) · 1.82 KB
/
thmpagestyles.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
% ----------
% Styling von Seiten
% zB Abstände zum Papierrand
% ----------
% header footer
\RequirePackage{fancyhdr}
% papier maße
\usepackage[
paper=a4paper,
left=3.5cm,
right=2.5cm,
bottom=2.0cm,
top=2cm,
headheight=55pt, % as per the warning by fancyhdr
includehead,includefoot,
heightrounded,
]{geometry}
% images
\RequirePackage{graphicx}
% pagestyle für das Titelblatt
\fancypagestyle{titlepage}{
% papiermaße
% ACHTUNG diese Maße sind nicht 100% THM konform,
% allerdings ist das Titelblatt eine gute Kopie der THM Vorlage
\newgeometry{
left=3.5cm,
right=2.5cm,
bottom=2.0cm,
top=2cm,
%
% schiebt den regulären Seiteninhalt nach unten
% ansonsten schneiden sich header und Inhalt
headheight=55pt,
%
% header und footer mit in die Maße einbeziehen
% die oben angegebenen Maße sind also ein rein weißer Bereich am Rand der Seite
includehead,includefoot,
}
% alle Einstellungen leeren
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% thm header bilder
\lhead{\includegraphics{img/thm_header.png}}
\rhead{\includegraphics{img/stdpl_header.png}}
\lfoot{}
\rfoot{}
}
% Für spezielle Seiten (Inhlatsangabe, neue Kapitel, LitVerz., ...)
\fancypagestyle{plain}{
\newgeometry{
left=4cm,
top=3cm,
right=1.5cm,
bottom=2.0cm,
}
\fancyhf{}
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
\fancypagestyle{main}{
\newgeometry{
left=4cm,
top=3cm,
right=1.5cm,
% eigentlich nur 2cm, aber die Seitenzahl ist 0.5 cm zu tief
bottom=2.5cm,
% .5 inch
headsep=1.27cm
}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhead[R]{\thepage}
\fancyhead[L]{\title}
}