-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f26617
commit 7fb97ac
Showing
7 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
$pdflatex=q/xelatex -synctex=1 %O %S/ |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
\documentclass{article} | ||
|
||
\usepackage[]{blindtext} | ||
\usepackage[]{polyglossia} % Sprachen | ||
\setmainlanguage[babelshorthands=true]{german} | ||
|
||
\begin{document} | ||
|
||
\tableofcontents | ||
\newpage | ||
|
||
|
||
\input{sections/einleitung.tex} | ||
|
||
\input{sections/erstes-dokument.tex} | ||
|
||
\input{sections/einfache-befehle.tex} | ||
|
||
|
||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.PHONY: all LaTeX-Kurs.pdf clean | ||
all: LaTeX-Kurs.pdf | ||
LaTeX-Kurs.pdf: | ||
TEXINPUTS=:. latexmk -xelatex -pdf -silent LaTeX-Kurs.tex | ||
clean: | ||
rm -f *.toc *.gz *.bib *.bcf *.xml *.aux *.bbl *.blg *.fls *.fdb_latexmk *.log *.pdf *~ LaTeX-Kurs.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
% Einfache Befehle Sektion | ||
\section{Einfache Befehle} | ||
|
||
\subsection{Dokumentklassen} | ||
|
||
\subsection{Einfache Formatierungs- und Grundbefehle} | ||
|
||
\subsection{Gliederungsbefehle} | ||
|
||
\subsection{Pakete} | ||
\blindtext | ||
|
||
\newpage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
% Einleitungs Sektion | ||
\section{Einleitung} | ||
Hier befassen wir uns mit dem warum? | ||
|
||
\subsection{Geschichte} | ||
- Programm TeX seit 1977 geschrieben von Donald E. Knuth | ||
- "`TeX"' vom griechischen texum | ||
- Makropaket LaTeX (Anfang 1980er), von Leslie Lamport, bringt viele Vereinfachungen für den normalen Anwender | ||
|
||
|
||
\subsection{Wofür ist LaTeX geeignet?} | ||
\textit{Tabelle hier} | ||
\blindtext | ||
\newpage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
% Problemstellungs Sektion | ||
\section{Erstes Dokument} | ||
\subsection{Minimales Dokument} | ||
{\large Aufgabe(Erstes Dokument)} | ||
|
||
\textit{Schreibt ein minimales Dokument und kompiliert es als PDF.} | ||
|
||
\begin{verbatim} | ||
\documentclass{minimal} | ||
\begin{document} | ||
Hallo Welt! | ||
\end{document} | ||
\end{verbatim} | ||
|
||
\newpage |