Hong-Phuc Bui
2018-10-07 93fe4b5cdd1f6fe0971cb4e712757cae1eda9892
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
\documentclass[
    pager=a4
]{scrbook}
 
%% Einstellungen für deutsche Sprache
\usepackage{fontspec}
\usepackage[ngerman]{babel}
 
 
% Der Befehl \setkomafont ändert die Formatierung eines Text-Elementes
% Der Befehl \addtokomafont fügt weitere Formatierung in der aktuellen Formatierung
% hinzu
% Die genutzte Formatierung Befehl in \setkomafont soll auschließlich die
% Unär-Form sein: 
% \normalfont, \rmfamily, \sffamily, \ttfamily für Schrifarten
% \mdseries, \bfseries                         für Fett-Grad (medium, bold-face)
% \upshape, \itshape, \slshape, \scshape       für Schrif-Schnitt
% Bespiel:
\setkomafont{author}{\bfseries\sffamily}   % lässt den Autor-Name in sans-serif und fett drucken
\addtokomafont{title}{\itshape}            % fügt noch die Kursive-Formatierung in der aktuellen 
                                           % Formatierung hinzu
% Eine Mischung von Unär-Form und Argument-Form (\textsf, \textbf, ect führt
% zu selsame Verhalten.)
% Weitere Beispiel:
\setkomafont{titlehead}{\scshape}
 
\titlehead{HTW-Saar \hfill IngWi}
\title{Ein Latex Dokument}
\author{Autor Name}
 
 
 
\begin{document}
\maketitle
 
Wenn man nicht zufrieden mit dem Standard-Befehlen zur Erstellung von
Title Seite, kann man Eingenes in der Umgebung \verb:titlepage:
gestalten.
 
 
\end{document}