summaryrefslogtreecommitdiff
path: root/2002/tex-introduction-cc2002/tex-einfuehrung
blob: ff5a4ff633f17ca43553c5bd296ed422b8a28745 (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147

0. Einfuehrung / Geschichte
1. Grundsaetzliches (.tex file, latex, .dvi, dvips, postscript, ...)
2. wie sieht ein LaTex dokument aus?
	\documentstyle[german]{article}
	\pagestyle{empty}
	\begin{document}
	..
	\end{document}

3. Texteingabe
	- leerzeichen / leerzeilen irrelevant
	- absatz durch leere zeile oder \par
	- zeilenumbruch mit \\

Trennvorgaben:
	- lokal (nur): Donau\-dampf\-schiff
	- lokal (auch): Donau"-dampf"-schiff
	- global: \hyphenation{Donau-dampf-schiff}
	- keine trennung lokal: \mbox{Untrennbar}
	- keine trennung global: \hyphenation{Untrennbar}
	- ~ == leerzeichen, bei dem kein zeilenumbruch erfolgen darf

Sonderzeichen:
	- deutsch: "a "o "u "A "O "U "s
	- sonstige: \'o \`o \^o \=o \.o \u{o} \v{o} \H{o} \t{oo} \c{c} \d{o}
	  z.b. C'est \c{c}a!
	- \$ \& \% \# \{ \} [ ] \_ @ \S \pounds $<$ $>$ $\backslash ?` !`

Striche und Anfuehrungszeichen:
	- Striche: - -- ---
	- Anfuehrungszeichen: \glq \grq \glqq \grqq \flq \frq \flqq \frqq
	  (german left quote, french right quote, ...)
	  Kurzform: "` "' "> "<

Leerraeume
	- \hspace{length}
	- \vspace{length}
	- \hfill \vfill
Auslassungszeichen
	- \ldots{}
	- \dotfill{}
	- \vdots


Texthervorhebungen
	- betonen {\em betontes}
	- unterstreichen \underline{ }
	- woertlich \verb{text}

Schriftarten:
	- Roman (\rm)
	- Fett (\bf)
	- Kursiv (\it)	(Italic-Korrektur \/)
	- Slanted (\sl)
	- Sans Serif (\sf)
	- Small Caps (\sc)
	- Typweriter (\tt)

Schriftgroessen:
	- \tiny
	- \scriptsize
	- \footnotesize
	- \small
	- \normalsize
	- \large
	- \Large
	- \LARGE
	- \huge
	- \Huge

NFSS:
	- \family{cmr|cmss|cmtt}
	- \series{ul|el|l|sl|m|sb|b|eb|ub}
	- \series{uc|ec|c|sc|m|sx|x|ex|ux}
	- \shape{n|it|sl|sc}
	- \size{size}{linespacing}
	- \selectfont


Dokumenststruktur

Gliederung:

	- \part{Teilueberschrift} 		\part*
	- \chapter{Kapitelueberschrift}		\chapter*
	
	- \section{Abschnittsueberschrift}
	- \subsection{}
	- \subsubsection{}
	- \paragraph{} [text folgt in gleicher zeile wie ueberschrift]
	- \subparagraph{}


	-  \setcounter{page|part|chapter|section|...}{wert}

Titelseite:
	- \title{Titel}
	- \thanks{Danksagung}
	- \author{Autor}
	- \date{Datum}
	- \maketitle

Zusammenfassung:
	- \begin{abstract} \end{abstract}

Inhaltsverzeichnis:
	- \tableofcontents
	- Tiefe des Einbindens: \setcounter{tocdepth}{tiefe}
	  tiefe:	-1 keine ueberschrift
	  		 0 chapter
			 1 chapter und section
			 2 chapter bis subsection
			 3 chapter bis subsubsection
			 4 chapter bis paragraph
			 5 alle

Dokumentaufbau:
	- \documentstyle[german, option, ...]{style}
	  Gaengige styles: article, report, book
	  Stiloptionen: 10pt,11pt,12pt,twoside,twocolumn,titlepage
	- \pagestyle{plain|headings|empty|myheadings}

	- \noindent
	- Zentriert: \begin{center} \end{center}
	- Links-Rechtsbuendig: \begin{flushleft|flushright}
	- Zitat: \begin{quotation} \end{quotation}
	- Gedichtzeilen: \begin{verse} \end{verse}
	- Woertlich: \begin{verbatim} \end{verbatim}
	- Randnotiz: \marginpar{Randnotiz}
	- Fussnote: \footnote{foobaR}

Listen und Aufzaehlungen:
	- Liste: \begin{itemize} \item \end{itemize}
	- Aufzaehlung: \begin{enumerate} \item \end{enumerate}
	- Beschreibung: \begin{description} \item[was] \end{description}

Querverweise:
	- Ziel des verweises: \label{name}
	- Verweis: \ref{name}, Seite \pageref{name}

Literaturverzeichnis:
	- "Wie in \cite[Seiten 12,13]{1} beschrieben..."
	\begin{thebibliography}{99}
	\bibitem{1} Markus Mueller, {\sl Mahlzeit - das Kochbuch, Addison-Wesley, 1995}
	...
	\end{thebibliography}
personal git repositories of Harald Welte. Your mileage may vary