[Anhang] Darstellung Ihnhaltsverzeichnis Ändern

Inhalt, Abbildungen, Tabellen, Quellcodes und andere Verzeichnisse


eRiF
Forum-Newbie
Forum-Newbie
Beiträge: 7
Registriert: Mo 7. Mär 2011, 19:58

[Anhang] Darstellung Ihnhaltsverzeichnis Ändern

Beitrag von eRiF »

Hi,

ich hab folgendes Problem:

Ich hab mittels \appendix den Anhang eingefügt der wird nun so dargestellt:

Inhaltsverzeichnis
1. test 1 ..............1
2. test 2 ..............1
A. Anhang test .....A-1
A.1. test 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1
nun möchte ich aber gerne das es so angezeigt wird

Inhaltsverzeichnis
1. test 1 ..............1
2. test 2 ..............1
Anhang A: test .....A-1
A.1. test 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1
\documentclass[a4paper]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[ngermanb]{babel}
\renewcommand{\familydefault}{\sfdefault}
\begin{document}
\tableofcontents

\thispagestyle {empty}
\cleardoublepage
\setcounter{page}{1}
\section{test 1}
\section{test 2}
\cleardoublepage
\appendix
\setcounter{page}{1}
\renewcommand{\thepage}{\Alph{section}-\arabic{page}}
\section{Anhang test}
\subsection{test 3}
\end{document}