Unereichbar
Lt. Junior Grade
- Registriert
- Mai 2010
- Beiträge
- 334
Hallo, ich schreibe ein Dokument, dabei möchte ich Datenblätter als PDFs in den Anhang machen. Dabei hätte ich gerne ein Inhaltsverzeichnis in dem nur steht: A. Datenblätter. Bei dem Kapitel A. Datenblätter soll dann ein Datenblattverzeichnis sein:
A. Datenblätter
A.1 Datenblatt 1 ..... 4
A.2 Datenblatt 2 ......9
Weiterhin hätte ich es gerne das die Überschrift Datenblatt 2 auf dem selben Blatt steht, wo die PDF eingefügt bzw. Angehängt wird.
Meine aktuelle Struktur sieht ca. so aus:
Das ist fast schon so wie ich möchte, nur das die PDF auf einer neuen Seite nach der Überschrift anfängt und kein Anhangsverzeichnis da ist.
A. Datenblätter
A.1 Datenblatt 1 ..... 4
A.2 Datenblatt 2 ......9
Weiterhin hätte ich es gerne das die Überschrift Datenblatt 2 auf dem selben Blatt steht, wo die PDF eingefügt bzw. Angehängt wird.
Meine aktuelle Struktur sieht ca. so aus:
\documentclass[a4paper, 12pt, numbers=endperiod]{scrartcl}
\usepackage[top=2.5cm, bottom=3.1cm, left=2.5cm, right=2.5cm]{geometry}
\setlength{\parindent}{0pt}
\usepackage{setspace}
\onehalfspacing
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[hidelinks]{hyperref}
\usepackage[pdftex]{graphicx}
\usepackage{float}
\usepackage{subfigure}
\usepackage{url}
\usepackage{pdfpages}
%KOPFZEILEFUßZEILE
\usepackage[headsepline,footsepline,automark]{scrlayer-scrpage}
\ohead{\headmark}
\chead{}
\ifoot{Uni}
\cfoot{}
\ofoot{\pagemark}
\newpairofpagestyles{kopfkeinekapitel}{\ohead{}\chead{}\ifoot{Uni}
\cfoot{}
\ofoot{\pagemark}
\KOMAoptions{headsepline=false}}
%\KOPFZEILEFUßZEILE
\begin{document}
%TITELBLATT
%\TITELBLATT
%EIDESSTATTLICHE ERKLLÄRUNG
%\EIDESSTATTLICHE ERKLLÄRUNG
%INHALTSVERZEICHNIS
\thispagestyle{empty}
\tableofcontents
\setcounter{page}{0}
\newpage
%\INHALTSVERZEICHNIS
\section{Eins}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
\section{Zwei}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
\section{Drei}
Inhalt
\subsection{Vier}
Inhalt
\subsection{Unterkapitel 1}
Inhalt
\subsection{Unterkapitel 2}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsubsection{Unterunterkapitel 2}
Inhalt
\subsection{Unterkapitel 3}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsection{Unterkapitel 4}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsubsection{Unterunterkapitel 2}
Inhalt
\newpage
\section{Fünf}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
%ABBILDUNGSVERZEICHNIS
\thispagestyle{kopfkeinekapitel}
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures
\newpage
%\ABBILDUNGSVERZEICHNIS
%LITERATURVERZEICHNIS
\thispagestyle{kopfkeinekapitel}
\addcontentsline{toc}{section}{Literaturverzeichnis}
%\bibliographystyle{unsrtdin}
\bibliographystyle{alphadin}
\bibliography{lit}
\newpage
%\LITERATURVERZEICHNIS
%ANHANG
\thispagestyle{kopfkeinekapitel}
\appendix
\phantomsection
\section{Datenblätter}
\subsection{upd}
\includepdf[pages=1,pagecommand={}]{Datenblaetter/db1.pdf}
\includepdf[pages=2-,pagecommand={}]{Datenblaetter/db2.pdf}
\end{document}
\usepackage[top=2.5cm, bottom=3.1cm, left=2.5cm, right=2.5cm]{geometry}
\setlength{\parindent}{0pt}
\usepackage{setspace}
\onehalfspacing
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[hidelinks]{hyperref}
\usepackage[pdftex]{graphicx}
\usepackage{float}
\usepackage{subfigure}
\usepackage{url}
\usepackage{pdfpages}
%KOPFZEILEFUßZEILE
\usepackage[headsepline,footsepline,automark]{scrlayer-scrpage}
\ohead{\headmark}
\chead{}
\ifoot{Uni}
\cfoot{}
\ofoot{\pagemark}
\newpairofpagestyles{kopfkeinekapitel}{\ohead{}\chead{}\ifoot{Uni}
\cfoot{}
\ofoot{\pagemark}
\KOMAoptions{headsepline=false}}
%\KOPFZEILEFUßZEILE
\begin{document}
%TITELBLATT
%\TITELBLATT
%EIDESSTATTLICHE ERKLLÄRUNG
%\EIDESSTATTLICHE ERKLLÄRUNG
%INHALTSVERZEICHNIS
\thispagestyle{empty}
\tableofcontents
\setcounter{page}{0}
\newpage
%\INHALTSVERZEICHNIS
\section{Eins}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
\section{Zwei}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
\section{Drei}
Inhalt
\subsection{Vier}
Inhalt
\subsection{Unterkapitel 1}
Inhalt
\subsection{Unterkapitel 2}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsubsection{Unterunterkapitel 2}
Inhalt
\subsection{Unterkapitel 3}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsection{Unterkapitel 4}
Inhalt
\subsubsection{Unterunterkapitel 1}
Inhalt
\subsubsection{Unterunterkapitel 2}
Inhalt
\newpage
\section{Fünf}
\thispagestyle{kopfkeinekapitel}
Inhalt
\newpage
%ABBILDUNGSVERZEICHNIS
\thispagestyle{kopfkeinekapitel}
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures
\newpage
%\ABBILDUNGSVERZEICHNIS
%LITERATURVERZEICHNIS
\thispagestyle{kopfkeinekapitel}
\addcontentsline{toc}{section}{Literaturverzeichnis}
%\bibliographystyle{unsrtdin}
\bibliographystyle{alphadin}
\bibliography{lit}
\newpage
%\LITERATURVERZEICHNIS
%ANHANG
\thispagestyle{kopfkeinekapitel}
\appendix
\phantomsection
\section{Datenblätter}
\subsection{upd}
\includepdf[pages=1,pagecommand={}]{Datenblaetter/db1.pdf}
\includepdf[pages=2-,pagecommand={}]{Datenblaetter/db2.pdf}
\end{document}
Das ist fast schon so wie ich möchte, nur das die PDF auf einer neuen Seite nach der Überschrift anfängt und kein Anhangsverzeichnis da ist.