von Athex » So 12. Jun 2022, 10:13
			
			
			Vielen Dank für das mit dem Minimalbeispiel. Mein Beispiel sieht vereinfacht so aus:
\documentclass[a4paper, 12pt, notitlepage]{report} 
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{setspace} %Zeilenabstand 1,5
\onehalfspacing %Zeilenabstand 1,5-Fach
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel} 
\usepackage{verbatim}
\usepackage{listings}
\usepackage{hyperref} %auf Link klicken zur Ref
\usepackage{etoc}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{lscape}
\usepackage{fancyvrb}
\usepackage{xcolor}
\usepackage{graphicx} 
\graphicspath{ {./Medien/} } 
\usepackage{geometry}
\usepackage{pdfpages}
%QUELLEN
\usepackage[backend=biber,style=authoryear,sorting=nyt]{biblatex}
\addbibresource{quellen.bib}
%BOXPLOTS
\usepackage{pgfplots}
\pgfplotsset{compat=1.12} 
\pgfplotsset{/pgf/number format/use comma} 
\usepgfplotslibrary{statistics}
\geometry{
    a4paper,
    top=25mm,
    bottom =20mm,
    left=50mm, 
    right=20mm 
    }
\renewcommand*\contentsname{Indice}
% colors for code snippets
\definecolor{codegreen}{rgb}{0,0.7,0.5}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codeblue}{rgb}{0,0.5,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.95}
\lstdefinestyle{mystyle}{
    backgroundcolor=\color{backcolour},   
    commentstyle=\color{codegreen},
    keywordstyle=\color{orange},
    numberstyle=\tiny\color{codegray},
    stringstyle=\color{codeblue},
    basicstyle=\ttfamily\footnotesize,
    breakatwhitespace=false,         
    breaklines=true,                 
    captionpos=b,                    
    keepspaces=true,                 
    numbers=left,                    
    numbersep=5pt,                  
    showspaces=false,                
    showstringspaces=false,
    showtabs=false,                  
    tabsize=2
    }
\lstset{style=mystyle}
\include{THESIS/00_Front/frontmatter} %DECKBLATT
\hypersetup{hidelinks}
\begin{document}
    \maketitle
    
    % Index - Inhaltsverzeichnis
    \hypersetup{hidelinks}
    \tableofcontents
    \thispagestyle{empty}
    
      % Tabellenverzeichnis
    \newpage
    \listoftables
    
    % Abbildungsverzeichnis
    \newpage
    \listoffigures
    
    % Einleitung
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/01_Einleitung/00_Einleitung}
    % Chapter Grundlagen
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/02_Grundlagen/00_Grundlagen}
    
    % Chapter Analyse
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/03_Analyse/00_Analyse}
    
    % Chapter Ergebnisse
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/04_Inhalte/00_Inhalte}
    
    % Chapter Vorschläge
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/05_Stoerungen/00_Stoerungen}
    
     % Chapter Fazit
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/06_Fazit/00_Fazit}
    
    \appendix
    \chapter{Tabellen}
    \include{Tabelle1}
    
    
    \chapter{Bildnachweis}
    \include{Anhang1}
    \include{Anhang2}
    
    \printbibliography
    \clearpage
\end{document}
			
			
							Vielen Dank für das mit dem Minimalbeispiel. Mein Beispiel sieht vereinfacht so aus:
\documentclass[a4paper, 12pt, notitlepage]{report} 
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{setspace} %Zeilenabstand 1,5
\onehalfspacing %Zeilenabstand 1,5-Fach
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel} 
\usepackage{verbatim}
\usepackage{listings}
\usepackage{hyperref} %auf Link klicken zur Ref
\usepackage{etoc}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{lscape}
\usepackage{fancyvrb}
\usepackage{xcolor}
\usepackage{graphicx} 
\graphicspath{ {./Medien/} } 
\usepackage{geometry}
\usepackage{pdfpages}
%QUELLEN
\usepackage[backend=biber,style=authoryear,sorting=nyt]{biblatex}
\addbibresource{quellen.bib}
%BOXPLOTS
\usepackage{pgfplots}
\pgfplotsset{compat=1.12} 
\pgfplotsset{/pgf/number format/use comma} 
\usepgfplotslibrary{statistics}
\geometry{
    a4paper,
    top=25mm,
    bottom =20mm,
    left=50mm, 
    right=20mm 
    }
\renewcommand*\contentsname{Indice}
% colors for code snippets
\definecolor{codegreen}{rgb}{0,0.7,0.5}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codeblue}{rgb}{0,0.5,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.95}
\lstdefinestyle{mystyle}{
    backgroundcolor=\color{backcolour},   
    commentstyle=\color{codegreen},
    keywordstyle=\color{orange},
    numberstyle=\tiny\color{codegray},
    stringstyle=\color{codeblue},
    basicstyle=\ttfamily\footnotesize,
    breakatwhitespace=false,         
    breaklines=true,                 
    captionpos=b,                    
    keepspaces=true,                 
    numbers=left,                    
    numbersep=5pt,                  
    showspaces=false,                
    showstringspaces=false,
    showtabs=false,                  
    tabsize=2
    }
\lstset{style=mystyle}
\include{THESIS/00_Front/frontmatter} %DECKBLATT
\hypersetup{hidelinks}
\begin{document}
    \maketitle
    
    % Index - Inhaltsverzeichnis
    \hypersetup{hidelinks}
    \tableofcontents
    \thispagestyle{empty}
    
      % Tabellenverzeichnis
    \newpage
    \listoftables
    
    % Abbildungsverzeichnis
    \newpage
    \listoffigures
    
    % Einleitung
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/01_Einleitung/00_Einleitung}
    % Chapter Grundlagen
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/02_Grundlagen/00_Grundlagen}
    
    % Chapter Analyse
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/03_Analyse/00_Analyse}
    
    % Chapter Ergebnisse
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/04_Inhalte/00_Inhalte}
    
    % Chapter Vorschläge
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/05_Stoerungen/00_Stoerungen}
    
     % Chapter Fazit
    \hypersetup{hidelinks}
    \include{THESIS/01_Kapitel/06_Fazit/00_Fazit}
    
    \appendix
    \chapter{Tabellen}
    \include{Tabelle1}
    
    
    \chapter{Bildnachweis}
    \include{Anhang1}
    \include{Anhang2}
    
    \printbibliography
    \clearpage
\end{document}