-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeispiel E-Book.tex
More file actions
40 lines (27 loc) · 848 Bytes
/
Beispiel E-Book.tex
File metadata and controls
40 lines (27 loc) · 848 Bytes
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
\documentclass[10pt,pdftex,a4paper,twoside,openright]{book}
\usepackage[hmarginratio=3:2]{geometry}
%German setting
\usepackage{ngerman}
\usepackage[latin1]{inputenc}
\usepackage[official]{eurosym}
\usepackage[T1]{fontenc}
\usepackage{graphicx} % Include grafics
\usepackage{grffile} % support special grafic names
\usepackage{listings} % Source code
\usepackage{titleref} % Referenz with name
\usepackage{pdf}
\pagestyle{fancy}
% Links nur Kapitel (Großkeinschreibung statt alles Groß)
\fancyhead[L]{\nouppercase{\leftmark}}
% Rechts nichts
\fancyhead[R]{}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\input{version}
\title{Beispiel E-Book}
\author{Martin Strohmayer\\m.stroh@ymail.com\\ \url{http://evil.hn.vc}}
\date{Version \versionnumber \\\today \\PDF Edition}
\begin{document}
\input{Inhalt}
\end{document}
%EOF