-
Notifications
You must be signed in to change notification settings - Fork 0
/
proScientia-de.tex
133 lines (98 loc) · 3.2 KB
/
proScientia-de.tex
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
% This file is part of proScientia.ltx
% (c) 2022 Karsten Reincke (https://github.com/kreincke/proScientia.ltx)
% It is distributed under the terms of the creative commons license
% CC-BY-4.0 (= https://creativecommons.org/licenses/by/4.0/)
\documentclass[
DIV=calc,
BCOR=5mm,
11pt,
headings=small,
oneside,
abstract=true,
toc=bib,
english,ngerman]{scrbook}
%%% (1) general configurations %%%
\usepackage[utf8]{inputenc}
\usepackage{a4}
\usepackage[english,ngerman]{babel}
\usepackage[
backend=biber,
style=authortitle-dw,
sortlocale=auto,
]{biblatex}
\input{cfg/inc.cfg-biber-de.tex}
\addbibresource{bib/lit.verify.bib}
\addbibresource{bib/lit.main.bib}
% package for improving the grey value and the line feed handling
\usepackage{microtype}
%language specific quoting signs
\usepackage[
style=german,
autostyle=true,
]{csquotes}
% language specific hyphenation
\input{cfg/inc.babelhyphenations.tex}
%%% (3) layout page configuration %%%
% select the visible parts of a page
% S.31: { plain|empty|headings|myheadings }
\pagestyle{headings}
% select the wished style of page-numbering
% S.32: { arabic,roman,Roman,alph,Alph }
\pagenumbering{arabic}
\setcounter{page}{1}
% select the wished distances using the general setlength order:
% S.34 { baselineskip| parskip | parindent }
% - general no indent for paragraphs
\setlength{\parindent}{0pt}
\setlength{\parskip}{1.2ex plus 0.2ex minus 0.2ex}
%- start(footnote-configuration)
\deffootnote[1.5em]{1.5em}{1.5em}{\textsuperscript{\thefootnotemark)\ }}
%for using label as nameref
\usepackage{nameref}
%integrate nomenclature
\input{cfg/inc.cfg-ncl-de.tex}
% Hyperlinks
\usepackage{hyperref}
\hypersetup{bookmarks=true,breaklinks=true,colorlinks=true,citecolor=blue,draft=false}
\begin{document}
%% use all entries of the bliography
\nocite{*}
\titlehead{Klassifikation}
\subject{Release \input{cfg/inc.rel.tex}}
\title{Titel}
\subtitle{Untertitel}
\author{Autor\input{cfg/inc.lfnote-de.tex}}
\maketitle
\chapter{Einleitung}
\section{Verifikation: Zitatmarkierung}
\begin{itemize}
\item \enquote{Zitat mit \enquote{eingebettetem Zitat}}
\item Deutscher Satz \foreignquote{german}{with embedded foreign phrase}
als eingebettetes Zitat. Erwartetes Resultat: Deutsche Anführungszeichen,
weil Teil in einem deutsche Satz.
\item Autonomes englischsprachiges Zitat:
\begin{quote}
\foreignquote{english}{This shall be an English written paragraph containing
a set of sentences which together build the quote.}
\end{quote}
Erwartetes Ergebnis: Englische Anführungszeichen, weil autonomer Satz.
\end{itemize}
\section{Verifikation: Literaturnachweis}
\begin{itemize}
\item Buch1 (erstverwendungen)\footcite[vgl.][15]{KantKdrV1974}
\item ders. ebda.\footcite[vgl.][15]{KantKdrV1974}
\item ders. a.a.O.\footcite[vgl.][23]{KantKdrV1974}
\item Buch2 (erstverwendung)\footcite[vgl.][15]{KantKdU1974}
\item Buch1 (wiederverwendung)\footcite[vgl.][15]{KantKdrV1974}
\end{itemize}
\chapter{Snippet Demo}
\begin{quote}\itshape
In diesem Kapitel erläutern wir \ldots
\end{quote}
\section{Snippet}
\input{snippets/inc.snippet.tex}
\input{bib/ncl.abbrevs-de.tex}
\input{bib/ncl.journals.tex}
\printnomenclature
\printbibliography
\end{document}