Files
get3-v5/Auswertung/Vorlage_main.tex
T
Matthias Biermann de760f87c3 fix pipeline
2023-10-07 16:35:45 +02:00

104 lines
2.6 KiB
TeX
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
\documentclass[a4paper,11pt]{scrartcl}
%Zur richtigen Darstellung von Einheiten
\usepackage{siunitx}
\sisetup{locale=DE, separate-uncertainty=true}
\sisetup{round-mode = places, round-precision = 2} % Zum Formatieren des \num Befehls (Runden auf die 2 Dezimalstelle)
% Für Bilder
\usepackage{graphicx}
\graphicspath{ {./Bilder/Diagramme/} }
\usepackage{float} % Exaktes Plazieren von Figures
\usepackage{caption} % Für Bildbeschriftung
\usepackage{titling} % Für Titel
\usepackage{datetime} % Für das Datum
\usepackage{hyperref}
\usepackage[figure]{hypcap}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{csvsimple}
%Zum Zusammenfügen von Spalten in tabular
\usepackage{multirow}
% Für Seitenlayout und Kopf- und Fußzeile
\usepackage[left=20mm, right=20mm, top=30mm, bottom=30mm]{geometry}
\usepackage{fancyhdr}
% Spacing zwischen Text und Tabellen / Figures setzen
% \setlength{\intextsep}{0pt}
% Zum Formatieren der Paragraphen
\usepackage{parskip}
% Für Graphen erstellt mit Python tikzplotlib
\usepackage{pgfplots}
\DeclareUnicodeCharacter{2212}{}
\usepgfplotslibrary{groupplots,dateplot}
\usetikzlibrary{patterns,shapes.arrows}
\pgfplotsset{compat=newest, width=\textwidth, height=0.55\textwidth} % Größe anpassen
\pgfplotsset{/pgf/number format/1000 sep=} % Tausendertrennzeichen entfernen
% PFG Plots einmal erstellen und wiederverwenden, reduziert die Kompilierzeit
\usepgfplotslibrary{external}
\tikzsetexternalprefix{build/figures/}
\tikzexternalize
\newdateformat{mydate}{\THEDAY.\ \monthname[\THEMONTH], \THEYEAR} % Datum im gewünschten Format
\captionsetup[figure]{font={scriptsize, it}}
\pagestyle{fancy}
\fancyhf{} % Löscht alle vorherigen Einstellungen
\fancyfoot[C]{\thepage} % Seitenzahl in der Mitte der Fußzeile
\setlength{\footskip}{-3cm}
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % Entfernt die Kopfzeile auf Seiten mit plain-Stil
}
\begin{document}
%Deckblatt (erste Seite)
\thispagestyle{plain} % Erste Seite als plain markieren
\input{Deckblatt.tex}
\newpage
%Inhaltsverzeichnis (zweite Seite)
\thispagestyle{plain} % Zweite Seite als plain markieren
\tableofcontents
\newpage
%1.Seite
\pagestyle{fancy}
\fancyhf{}
\setcounter{page}{1}
\fancyhead[L]{V5}
\fancyhead[R]{Impulse auf Leitungen}
\fancyfoot[C]{\thepage}
\footskip = 15 mm % Abstand zwischen Fußzeile und Text einstellen
%\input{Einleitung.tex}
%\newpage
%2.Seite
\section{Versuchsauswertung}
\input{Abschnitt 2.1.tex}
\newpage
%3.Seite
\input{Abschnitt 2.2.tex}
\newpage
%4.Seite
\input{Abschnitt 2.3.tex}
\newpage
%5.Seite
\input{Abschnitt 2.4.tex}
\newpage
\end{document}