-
Notifications
You must be signed in to change notification settings - Fork 0
/
book-main.tex
103 lines (73 loc) · 1.8 KB
/
book-main.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
%% TimmLiTeX
%% Version: v0.9.1
%% Last modified: 2024-02-20 18:18:25
\documentclass[
11pt,
bibliography=totoc,
numbers=noenddot,
% draft
]{scrbook}
\usepackage{datetime}
\RequirePackage{etoolbox}
\newbool{draftmode}
\booltrue{draftmode}
\input{basic-text-settings}
%==============================
% Optional packages & settings
%------------------------------
%% Uncomment the following line for deactivating draftmode
% \boolfalse{draftmode} % Deactivate draftmode
\ifbool{draftmode}{
\usepackage[firstpageonly=true]{draftwatermark}
\SetWatermarkScale{1}
\AtBeginDocument{\SetWatermarkText{DRAFT}}
}{}
%% Language
\AtBeginDocument{
\selectlanguage{german} % which language is available depends on how babel is loaded
}
% \input{TLmacros} % the content of TLmacros.tex goes here
%% Commenting
\input{packages/todonotes-settings}
%% Tables
\usepackage{booktabs} % Nicer tables
%% Graphics
\input{packages/tikz-settings}
\input{packages/forest-settings}
%% Linguistics
\input{packages/linguex-settings}
\input{packages/langsci-avm-settings}
% \usepackage[inference]{semantic} % for CCG
% \usepackage{packages/ccg}
%% Code listings
\input{packages/listings-settings}
%==============================
% Title
%------------------------------
\title{Title of book}
\author{Max Mustermann \\
Affiliation \\
\url{[email protected]} \\}
\date{\ddmmyyyydate\today, \currenttime}
%==============================
% Document start
%------------------------------
\begin{document}
\maketitle
\frontmatter
\tableofcontents
\mainmatter
\input{book-examples}
\chapter{Blindtext}
\lipsum
\section{Blindtext subsection}
\lipsum
%------------------------------
% Document end
%==============================
\insertBib
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: