verzeichnisformatierung mir titletoc
Ich benutze das titletocpaket für chaptertocs und titlesec zur formatierung der des chapters. Wenn ich aber das chapter im Displayformat eingebe (so soll der Titel gesetzt werden) und anschließend automatisch die Kapitelgliederung einfüge, dann wird das Verzeichnis durch display im Blocksatz gesetzt. Ich möchte aber gern \raggedleft. Alle Versuche \raggesleft oder \flushleft einzubauen brachten aber nicht das gewünschte Ergebnis. Wer kann mir weiterhelfen?
Danke
Code:
\documentclass{scrbook}
\RequirePackage{titlesec}%Sectionformatierung
\RequirePackage{titletoc}%Inhaltsverzeichnis
\titleformat{\chapter}[display]%Formatierung des Kapitels
{\normalfont \Large\filcenter\sffamily}
{\titlerule[1pt]%
\vspace{1pt}%
\titlerule
\vspace{1pc}%
\LARGE\MakeUppercase{\chaptertitlename} \thechapter}
{1pc}
{\titlerule
\vspace{1pc}%
\Huge}[\vspace*{4pc}%
\startcontents
\normalsize\raggedleft\printcontents{l}{1}{\setcounter{tocdepth}{1}}
]
\titlespacing*{\chapter} {0pt}{20pt}{20pt}%Ausrichtung und Platz
\titlecontents*{lsection}[3.1em]
{\itshape\small}
{\makebox[0pt][r]{\thecontentslabel\enspace}}
{\contentsmargin{30pt}}{}[\ \textbullet\ ]%[.]
\titlecontents*{lsubsection}[0pt]
{\itshape\scriptsize}
{\makebox[0pt][r]{\thecontentslabel\enspace}}
{\contentsmargin{0pt}}{}[(][--][)]
\begin{document}
\chapter{Kapitel}
\section{Section}
\section{Die Section}
\subsection{subsection}
\subsection{subsection}
\subsection{subsection}
\section{Die Section}
\subsection{subsection}
\end{document}