-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproScientia-en.tex
130 lines (95 loc) · 3.22 KB
/
proScientia-en.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
% 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,
ngerman,english]{scrbook}
%%% (1) general configurations %%%
\usepackage[utf8]{inputenc}
\usepackage{a4}
\usepackage[ngerman,english]{babel}
\usepackage[
backend=biber,
style=authortitle-dw,
sortlocale=auto,
]{biblatex}
\input{cfg/inc.cfg-biber-en.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-en.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{Classification}
\subject{Release \input{cfg/inc.rel.tex}}
\title{Title}
\subtitle{Subtitle}
\author{Author\input{cfg/inc.lfnote-en.tex}}
\maketitle
\chapter{Introduction}
\section{Verifying the Quotation Technique}
\begin{itemize}
\item \enquote{Quotation with an \enquote{embedded quotation}}
\item An English sentence \foreignquote{english}{mit einer deutsche Phrase} as an embedded quotation. Expected result: English quotation marks because part of a surrounding English sentence.
\item Separated German quotation:
\begin{quote}
\foreignquote{german}{Dieses ist ein deutscher Satz, der ein deutsch-sprachiges eigenständiges Zitat sein soll.}
\end{quote}
Expected Result: German quotation marks, because a separated part.
\end{itemize}
\section{Verifying the Literature Management}
\begin{itemize}
\item book-1 (mentioned the first time)\footcite[vgl.][15]{KantKdrV1974}
\item idem ibid.\footcite[vgl.][15]{KantKdrV1974}
\item idem loc. cit.\footcite[vgl.][23]{KantKdrV1974}
\item book-2 (mentioned the first time)\footcite[vgl.][15]{KantKdU1974}
\item book-2 short-title (mentioned the second time) \footcite[vgl.][15]{KantKdrV1974}
\end{itemize}
\chapter{Snippet Demo}
\begin{quote}\itshape
In this chapter we discuss \ldots
\end{quote}
\section{Snippet}
\input{snippets/inc.snippet.tex}
\input{bib/ncl.abbrevs-en.tex}
\input{bib/ncl.journals.tex}
\printnomenclature
\printbibliography
\end{document}