PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Beschriftung des Abbildungsverzeichnis



Joe84
29-06-2009, 09:54
Hallo,

ich habe ein Problem mit der Beschriftung im Abbildungsverzeichnis. Im Moment kommt folgendes raus:

1. Name der Abbildung...........Seite
2. Name der Abbildung...........Seite

Ich hätte aber gerne:

Abbildung 1: Name der Abbildung........Seite
Abbildung 2: Name der Abbildung........Seite

Anbei noch meine Header-Datei:


\documentclass[pdftex,12pt,a4paper, parskip, appendixprefix, listof=totoc]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage{mathptmx}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{appendix}
%Seitenränder einstellen
\usepackage{tocstyle}
\usetocstyle{allwithdot}



\usepackage[a4paper, left=4.0cm, right=2.0cm, top=2.0cm, bottom=4.0cm]{geometry}

\usepackage[see=true, commabeforerest,
authorformat={year},
authorformat=abbrv,
titleformat=all,
bibformat=nohang]{jurabib} %lässt Vgl. und Jahr in Fußnote zu und fügt Shorttitle ein
\renewcommand*{\jbcitationyearformat}[1]{\unskip\space#1:} %Klammern um Jahreszahl in Fußnote weg
\renewcommand*{\bibbdsep}{} %Kein Komma zwischen Ort und Jahr im Literaturverzeichnis
\renewcommand*{\bibbstasep}{;} % Trennzeichen für 2 Autoren im Literaturverzeichnis
\renewcommand*{\bibatsep}{,}%Komma Hinter t
%\renewcommand*{\biblnfont}{\textnormal} %Nachname Autor fett
%\renewcommand*{\bibfnfont}{\textnormal} %Vorname Autor fett

%Einstellungen für alphanumerische Kapitlenummerierung


\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}

\usepackage{greekctr}

\newcommand{\tocthechapter}{\Roman{chapter}}
\newcommand{\tocthesection}{\Alph{section}}
\newcommand{\tocthesubsection}{\arabic{subsection} }
\newcommand{\tocthesubsubsection}{\makeautobrace\a lph{subsubsection}}
\newcommand{\toctheparagraph}{\makeautobrace\greek {paragraph}}

\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\thechapter\nobreakspac e\Alph{section}}
\renewcommand{\thesubsection}{\thesection\nobreaks pace\arabic{subsection}}
\renewcommand{\thesubsubsection}{\thesubsection\no breakspace\alph{subsubsection}}
\renewcommand{\theparagraph}{\thesubsubsection\nob reakspace\greek{paragraph}}

\renewcommand*{\othersectionlevelsformat}[1]{\csname #1format\endcsname}
\newcommand*{\sectionformat}{\tocthesection\autodo t\enskip}
\newcommand*{\subsectionformat}{\tocthesubsection\ autodot\enskip}
\newcommand*{\subsubsectionformat}{\tocthesubsubse ction\autobrace\enskip}
\newcommand*{\paragraphformat}{\toctheparagraph\au tobrace\enskip}

\newcommand*{\AddContentsLine}{}
\let\AddContentsLine\addcontentsline
\renewcommand*{\addcontentsline}[3]{%
\begingroup
\let\thechapter\tocthechapter
\let\thesection\tocthesection
\let\thesubsection\tocthesubsection
\let\thesubsubsection\tocthesubsubsection
\let\theparagraph\toctheparagraph
\let\thesubparagraph\tocthesubparagraph
\AddContentsLine{#1}{#2}{#3}%
\endgroup
}
\makeatletter
\newcommand*{\autobrace}{\if@altsecnumformat%(
)\fi}
\makeatother
\DeclareRobustCommand*{\makeautobrace}{\let\autodo t\autobrace}

% --- Abkürzungsverzeichnis: ----------------------------
% START % Näheres siehe http://my.opera.com/timomeinen/blog/show.dml/68644
\usepackage[intoc]{nomencl}
% Befehl umbenennen in abk
\let\abk\nomenclature
% Deutsche Überschrift
\renewcommand{\nomname}{Abkürzungsverzeichnis}
% Punkte zw. Abkürzung und Erklärung
\setlength{\nomlabelwidth}{.20\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
% Zeilenabstände verkleinern
\setlength{\nomitemsep}{-\parsep}
\makenomenclature

\makeatletter% siehe De-TeX-FAQ
\renewcommand*{\toc@heading}{%
\addsec{\contentsname}% bei scrartcl \addsec statt \addchap
\@mkboth{\contentsname}{\contentsname}%
}
\makeatother% siehe \makeatletter

\usepackage{remreset} %Fußnoten fortlaufend nummerieren
\makeatletter
\@removefromreset{footnote}{chapter}
\makeatother

\usepackage{caption}
\captionsetup{figurewithin=none}
\captionsetup{tablewithin=none}

\renewcommand*{\figureformat}{\figurename~\thefigu re }
\renewcommand*{\tableformat}{\tablename~\thetable }

localghost
29-06-2009, 10:38
Suche im Forum mal nach tocloft (http://ctan.org/pkg/tocloft). Da gibt es eine ganze Reihe an brauchbaren Lösungen.


MfG
Thorsten¹