Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

πŸ“š The CoCalc Library - books, templates and other resources

Views: 96168
License: OTHER
1
%
2
% Body text font is Palatino!
3
%
4
5
\documentclass[a5paper,pagesize,10pt,bibtotoc,pointlessnumbers,
6
normalheadings,DIV=9,twoside=false]{scrbook}
7
8
% twoside, openright
9
\KOMAoptions{DIV=last}
10
11
\usepackage{trajan}
12
13
\usepackage[ngerman]{babel}
14
\usepackage[utf8]{inputenc}
15
\usepackage[T1]{fontenc}
16
17
\usepackage[babel,german=guillemets]{csquotes}
18
19
\usepackage[sc]{mathpazo}
20
\linespread{1.05}
21
22
\usepackage{verbatim} % for comments
23
\usepackage{listings} % for comments
24
25
%\setlength{\parindent}{10pt}
26
%\setlength{\parskip}{1.4ex plus 0.35ex minus 0.3ex}
27
%\setlength{\parskip}{1.4ex plus 0.35ex minus 0.3ex}
28
29
\usepackage{blindtext}
30
\newcommand{\q}[1]{>>\textit{#1}<<}
31
32
\title{A book title}
33
\author{Author Name}
34
\date{\today}
35
36
\begin{document}
37
38
39
%=========================================
40
\begin{titlepage}
41
\centering{
42
{\fontsize{40}{48}\selectfont
43
A book title}
44
}\\
45
46
\vspace{10mm}
47
\centering{\Large{Author Name}}\\
48
\vspace{\fill}
49
\centering \large{2011}
50
\end{titlepage}
51
52
53
%=========================================
54
\newpage{}
55
\thispagestyle {empty}
56
57
\vspace*{2cm}
58
59
\begin{center}
60
\Large{\parbox{10cm}{
61
\begin{raggedright}
62
{\Large
63
\textit{Do what you think is interesting,
64
do something that you think is fun and worthwhile,
65
because otherwise you won’t do it well anyway.}
66
}
67
68
\vspace{.5cm}\hfill{---Brian W. Kernighan}
69
\end{raggedright}
70
}
71
}
72
\end{center}
73
74
\newpage
75
76
77
%=========================================
78
\blinddocument
79
80
81
%=========================================
82
\begin{comment}
83
Just some notes, not visible in pdf.
84
\end{comment}
85
86
87
\end{document}
88
89