Grundstruktur
This commit is contained in:
parent
302cee3c0f
commit
e5d9e4bd04
70
.gitignore
vendored
70
.gitignore
vendored
@ -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
|
||||
|
||||
0
content/Absatzformatierung.tex
Normal file
0
content/Absatzformatierung.tex
Normal file
0
content/Aufzählungen.tex
Normal file
0
content/Aufzählungen.tex
Normal file
0
content/Grafiken.tex
Normal file
0
content/Grafiken.tex
Normal file
0
content/Grundstruktur.tex
Normal file
0
content/Grundstruktur.tex
Normal file
0
content/Hilfe-und-Informationen.tex
Normal file
0
content/Hilfe-und-Informationen.tex
Normal file
0
content/Literaturverwaltung.tex
Normal file
0
content/Literaturverwaltung.tex
Normal file
0
content/Mathematische-Formeln.tex
Normal file
0
content/Mathematische-Formeln.tex
Normal file
0
content/Paket-in-Sicht.tex
Normal file
0
content/Paket-in-Sicht.tex
Normal file
0
content/Quelltext-Listings.tex
Normal file
0
content/Quelltext-Listings.tex
Normal file
0
content/Referenzen-und-Fußnoten.tex
Normal file
0
content/Referenzen-und-Fußnoten.tex
Normal file
0
content/Sonderzeichen.tex
Normal file
0
content/Sonderzeichen.tex
Normal file
0
content/Tabellen.tex
Normal file
0
content/Tabellen.tex
Normal file
0
content/Textauszeichnung.tex
Normal file
0
content/Textauszeichnung.tex
Normal file
0
content/Was-ist-LaTeX.tex
Normal file
0
content/Was-ist-LaTeX.tex
Normal file
0
content/Wie-funktioniert-LaTeX.tex
Normal file
0
content/Wie-funktioniert-LaTeX.tex
Normal file
0
literature.bib
Normal file
0
literature.bib
Normal file
40
main.tex
Normal file
40
main.tex
Normal file
@ -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}
|
||||
27
setup.tex
Normal file
27
setup.tex
Normal file
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user