summaryrefslogtreecommitdiff
path: root/2002/tex-introduction-cc2002/tex-einfuehrung
diff options
context:
space:
mode:
Diffstat (limited to '2002/tex-introduction-cc2002/tex-einfuehrung')
-rw-r--r--2002/tex-introduction-cc2002/tex-einfuehrung147
1 files changed, 147 insertions, 0 deletions
diff --git a/2002/tex-introduction-cc2002/tex-einfuehrung b/2002/tex-introduction-cc2002/tex-einfuehrung
new file mode 100644
index 0000000..ff5a4ff
--- /dev/null
+++ b/2002/tex-introduction-cc2002/tex-einfuehrung
@@ -0,0 +1,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