From e5d9e4bd04aefd52b31ed7458af24d61d19a9906 Mon Sep 17 00:00:00 2001 From: anika Date: Mon, 5 Oct 2020 20:31:42 +0200 Subject: [PATCH] Grundstruktur --- .gitignore | 70 ++++++++++++++++++++++++++++- content/Absatzformatierung.tex | 0 content/Aufzählungen.tex | 0 content/Grafiken.tex | 0 content/Grundstruktur.tex | 0 content/Hilfe-und-Informationen.tex | 0 content/Literaturverwaltung.tex | 0 content/Mathematische-Formeln.tex | 0 content/Paket-in-Sicht.tex | 0 content/Quelltext-Listings.tex | 0 content/Referenzen-und-Fußnoten.tex | 0 content/Sonderzeichen.tex | 0 content/Tabellen.tex | 0 content/Textauszeichnung.tex | 0 content/Was-ist-LaTeX.tex | 0 content/Wie-funktioniert-LaTeX.tex | 0 literature.bib | 0 main.tex | 40 +++++++++++++++++ setup.tex | 27 +++++++++++ 19 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 content/Absatzformatierung.tex create mode 100644 content/Aufzählungen.tex create mode 100644 content/Grafiken.tex create mode 100644 content/Grundstruktur.tex create mode 100644 content/Hilfe-und-Informationen.tex create mode 100644 content/Literaturverwaltung.tex create mode 100644 content/Mathematische-Formeln.tex create mode 100644 content/Paket-in-Sicht.tex create mode 100644 content/Quelltext-Listings.tex create mode 100644 content/Referenzen-und-Fußnoten.tex create mode 100644 content/Sonderzeichen.tex create mode 100644 content/Tabellen.tex create mode 100644 content/Textauszeichnung.tex create mode 100644 content/Was-ist-LaTeX.tex create mode 100644 content/Wie-funktioniert-LaTeX.tex create mode 100644 literature.bib create mode 100644 main.tex create mode 100644 setup.tex diff --git a/.gitignore b/.gitignore index 91d399b..3fe9cf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,74 @@ +### LaTeX ### +## Core latex/pdflatex auxiliary files: *.aux +*.lof *.log +*.lot +*.fls *.out -*.tmp *.toc +*.fmt +*.fot +*.cb +*.cb2 +.*.lb +## Intermediate documents: +*.dvi +*.xdv +*-converted-to.* +# these rules might exclude image files for figures etc. +# *.ps +# *.eps +# *.pdf + +## Generated if empty string is given at "Please type another file name for output:" +.pdf + +## Bibliography auxiliary files (bibtex/biblatex/biber): +*.bbl +*.bcf +*.blg +*-blx.aux +*-blx.bib +*.run.xml + +## Build tool auxiliary files: +*.fdb_latexmk +*.synctex +*.synctex(busy) +*.synctex.gz +*.synctex.gz(busy) +*.pdfsync + +## Build tool directories for auxiliary files +# latexrun +latex.out/ + +# hyperref +*.brf + +# minted +_minted* +*.pyg + +# todonotes +*.tdo + +## Editors: +# LyX +*.lyx~ + +# Kile +*.backup + +# TeXnicCenter +*.tps + +### vscode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace diff --git a/content/Absatzformatierung.tex b/content/Absatzformatierung.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Aufzählungen.tex b/content/Aufzählungen.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Grafiken.tex b/content/Grafiken.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Grundstruktur.tex b/content/Grundstruktur.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Hilfe-und-Informationen.tex b/content/Hilfe-und-Informationen.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Literaturverwaltung.tex b/content/Literaturverwaltung.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Mathematische-Formeln.tex b/content/Mathematische-Formeln.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Paket-in-Sicht.tex b/content/Paket-in-Sicht.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Quelltext-Listings.tex b/content/Quelltext-Listings.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Referenzen-und-Fußnoten.tex b/content/Referenzen-und-Fußnoten.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Sonderzeichen.tex b/content/Sonderzeichen.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Tabellen.tex b/content/Tabellen.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Textauszeichnung.tex b/content/Textauszeichnung.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Was-ist-LaTeX.tex b/content/Was-ist-LaTeX.tex new file mode 100644 index 0000000..e69de29 diff --git a/content/Wie-funktioniert-LaTeX.tex b/content/Wie-funktioniert-LaTeX.tex new file mode 100644 index 0000000..e69de29 diff --git a/literature.bib b/literature.bib new file mode 100644 index 0000000..e69de29 diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..f01b9f9 --- /dev/null +++ b/main.tex @@ -0,0 +1,40 @@ +\input{setup.tex} % Präambel +% \addbibresource{literature.bib} + + +\title{\LaTeX-Skript} +\author{Bernhard Lüdtke \and Christian Kremitzl \and Florian Knoch \and Anika Amma} + +\begin{document} + +\frontmatter +% Titelseite +%\input{content/titlepage.tex} +% oder einfach +%\maketitle + +\setcounter{page}{1} % Titelseite soll nicht mitgezählt werden +\tableofcontents + +\mainmatter +\input{content/Was-ist-LaTeX.tex} +\input{content/Wie-funktioniert-LaTeX.tex} +\input{content/Grundstruktur.tex} +\input{content/Projektstruktur.tex} +\input{content/Sonderzeichen.tex} +\input{content/Textauszeichnung.tex} +\input{content/Absatzformatierung.tex} +\input{content/Aufzählungen.tex} +\input{content/Mathematische-Formeln.tex} +\input{content/Quelltext-Listings.tex} +\input{content/Grafiken.tex} +\input{content/Tabellen.tex} +\input{content/Referenzen-und-Fußnoten.tex} +\input{content/Literaturverwaltung.tex} +\input{content/Paket-in-Sicht.tex} +\input{content/Hilfe-und-Informationen.tex} + + +% Literaturverzeichnis + +\end{document} diff --git a/setup.tex b/setup.tex new file mode 100644 index 0000000..cd97ec2 --- /dev/null +++ b/setup.tex @@ -0,0 +1,27 @@ +\documentclass[a4paper, 12pt, ngerman]{scrartcl} + +\usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage{babel} + +\usepackage{amssymb, amsfonts, amsmath} % Mathezeug + +\usepackage{hyperref} % Referenzen als Links +\hypersetup{colorlinks,breaklinks,urlcolor=blue,linkcolor=blue} +\urlstyle{same} % URLs werden in derzeitiger Schrift statt dicktngleich ausgegeben + +\usepackage{cleveref} % mehr mit Referenzen + +\usepackage{graphicx} +\graphicspath{graphics/} + +\usepackage{paralist} % kompakte Listen + +\usepackage{longtable, array, tabularx, booktabs, colortbl} % Tabellenzeug + +\usepackage{todonotes} + +\usepackage{minted} % Quelltext-Listings + +\usepackage{csquote} % für \enquote +