Hallo zusammen,

ich habe schon wieder ein kleines Problem. Wahrscheinlich ist es total leicht zu lösen, nur ich komm leider nicht drauf. Hab auch schon in anderen Foren recherchiert und bin auf eine Lösung gekommen, doch nun bekomm ich die Formatierung nicht hin.

Ich möchte bei meinen Abbildungen auch die Quelle hinzufügen. Diese Soll in der Fußzeile mit aufgeführt werden, aber im Abbildungsverzeichnis natürlich nicht. Dies funktioniert auch schon soweit. Nur wird die Fußzeile immer in runde Klammern gesetzt.

Bsp.:
^1 (Vgl. Nachname 2001: Shorttitel1, S. 18)

Das ganze sollte aber wie folgt aussehen:
^1 Vgl. Nachname 2001: Shorttitel1, S. 18

Hier meine bisherigen tex Dateien

Main.tex
Code:
\documentclass[pdftex,
               12p,
               a4paper,
               final,
               notitlepage,pointlessnumbers,
               toc=graduated,
               bibtotoc, liststotoc,
               listof=nochaptergap
               ]
               {scrreprt}
%%% Style ----------------------------------------------------------------------------------------

\input{Style}
\bibliography{Literatur}

%%% Abbildungsverzeichnis ------------------------------------------------------------------------

\begin{document}
\listoffigures

%%% Dokument -------------------------------------------------------------------------------------

Hier steht ein Text. \footcite[\space Vgl.][18]{Que01}

\begin{figure}[h]\centering
\includegraphics[width=9cm]{./images/bild.png}
\caption[Bildname Abbildungsverzeichnis]{Bildname Fußnote \protect\footnotemark}
\label{fig:Bild}
\end{figure}
\footnotetext{\, \footcite[\space Vgl.][18]{Que01}}

%%% Literaturverzeichnis -------------------------------------------------------------------------

\newpage

\printbibliography

\end{document}
Literatur.bib
Code:
@BOOK{Que01,
  AUTHOR       	= {Nachname, Vorname},
  TITLE        	= {Titel 1},
  SHORTTITLE 	= {Shorttitel 1},
  EDITION	    = {},
  PUBLISHER    	= {Verlag},
  ADDRESS	    = {Ort},
  YEAR         	= {2001}
}
Style.tex
Code:
%%% Allgemein ------------------------------------------------------------------------------------

\usepackage[latin1]{inputenc}
\usepackage{a4}                                     % a4-Format, Neudeutsch, alte LaTeX-Symbole
%\usepackage[ngerman]{babel}                        % neue Silbentrennung
%\usepackage[babel,german=guillemets]{csquotes}
\usepackage[babel,german=quotes]{csquotes}
%\usepackage[german]{varioref}                       % flexible Querverweise \label \vref \vpageref
\usepackage[left   = 4.0cm,
            right  = 2.0cm,                         % Einstellung der Ränder
            top    = 2.0cm,
            bottom = 2.0cm]{geometry}
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\onehalfspacing
\setlength{\parskip}{\baselineskip}
\setlength{\parindent}{0pt}

\usepackage{graphicx}
%\usepackage{caption}                                % ein besseres \caption als Standard caption
\usepackage{picins}                                 % textumflossene Bilder. Achtung: \label

\usepackage{listings}
\usepackage[T1]{fontenc} 		% Damit LaTex Umlaute usw. erkennt
\usepackage[latin1]{inputenc} 	% Damit klappt die wechselnde Bearbeitung unter
\usepackage{eurosym}	% Damit das Euro-Symbol dargestellt werden kann
\usepackage[german]{babel}
\usepackage[usenames]{color}

%%% Kopf- und Fußzeilen --------------------------------------------------------------------------

\usepackage[automark, markusedcase]{scrpage2}       % Flexible Kopf- und Fusszeilen
\pagestyle{scrheadings}                             % Standard Kopf- und Fusszeilen
\lohead{\headmark}
%\rofoot{\pagemark}                                  % innere Kopfzeile --> Kapitel?berschrift
\chead{}                                            % mittlere Kopfzeile --> leer
%\cfoot{}                                            % ?usser Kopfzeile --> Seitennummer
\setheadsepline{0.2mm}                              % untere Linie der Kopfzeile
%%\setfootbotline{0.2mm}
%\setfootsepline{0.2mm}

%%% Inhaltsverzeichnis und Gliederung ------------------------------------------------------------

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

\renewcommand{\thechapter}{\Roman{chapter}.}
\renewcommand{\thesection}{\Alph{section}.}
\renewcommand{\thesubsection}{\arabic{subsection}.}
\renewcommand{\thesubsubsection}{\alph{subsubsection})}
\renewcommand{\theparagraph}{\roman{paragraph})}

\newcommand{\tocthechapter}{\Roman{chapter}.}
\newcommand{\tocthesection}{\Alph{section}.}
\newcommand{\tocthesubsection}{\arabic{subsection}.}
\newcommand{\tocthesubsubsection}{\alph{subsubsection})}
\newcommand{\toctheparagraph}{\roman{paragraph})}

\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
}

\usepackage{titletoc}

\titlecontents{chapter}
  [2.5em]
  {\bfseries\scshape}
  {\contentslabel{2em}}
  {\hspace*{-2em}}
  {\normalfont\titlerule*[0.8pc]{.}\contentspage}

\titlecontents{section}
  [4em]
  {\bfseries}
  {\contentslabel{2em}}
  {\hspace*{-2em}}
  {\normalfont\titlerule*[0.8pc]{.}\contentspage}

\titlecontents{subsection}
  [5.5em]
  {\bfseries}
  {\contentslabel{2em}}
  {\hspace*{-2em}}
  {\normalfont\titlerule*[0.8pc]{.}\contentspage}

\titlecontents{subsubsection}
  [7em]
  {}
  {\contentslabel{2em}}
  {\hspace*{-2em}}
  {\titlerule*[0.8pc]{.}\contentspage}

\titlecontents{paragraph}
  [8.5em]
  {}
  {\contentslabel{2em}}
  {\hspace*{-2em}}
  {\titlerule*[0.8pc]{.}\contentspage}

\usepackage{titlesec}

\titleformat{\chapter}%
  {\huge\bfseries\scshape}%
  {\thechapter\enskip}%
  {0em}%
  %{\uuline}%
  {}

\titlespacing{\chapter}
             {0pc}{*-8.0}{1pc}[0pc]

\titleformat{\section}%
  {\LARGE\bfseries}%
  {\thesection\enskip}%
  {0em}%
  %{\uuline}%
  {}

\titlespacing{\section}
             {0pc}{0pc}{0pc}[0pc]

\titleformat{\subsection}%
  {\Large\bfseries}%
  {\thesubsection\enskip}%
  {0em}%
  %{\uline}
  {}

\titlespacing{\subsection}
             {0pc}{0pc}{0pc}[0pc]

\titleformat{\subsubsection}%
  {\large}%
  {\thesubsubsection\enskip}%
  {0em}%
  %{\uline}%
  {}

\titlespacing{\subsubsection}
             {0pc}{0pc}{0pc}[0pc]

\titleformat{\paragraph}%
  {\large\itshape}%
  {\theparagraph\enskip}%
  {0em}%
  %{\bgroup\markoverwith{\lower .6ex\hbox{.}}\ULon}%
  {}

\titlespacing{\paragraph}
             {0pc}{0pc}{0pc}[0pc]

%%% Abkürzungsverzeichnis ------------------------------------------------------------------------

\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}{0.20\hsize}
\renewcommand{\nomlabel}[1]{\hspace*{0.5em}#1 \dotfill}
% Zeilenabstände verkleinern
\setlength{\nomitemsep}{-3\parsep}
%\makeglossary
\makenomenclature

%%% Literaturverzeichnis -------------------------------------------------------------------------

\usepackage[style=authortitle-dw,
    firstinits=true,
    minnames=2,
    maxnames=3,
    sorting=nyvt,
    autocite=footnote,
    backend=bibtex8
]{biblatex}

%% setzt "/" vor u.a. in den Zitaten
\DefineBibliographyStrings{german}{andothers={\addslash u.a.}}

\renewcommand*{\newblockpunct}{\addcolon\addspace}

%% sorgt dafür, dass bei Zitaten mit mehreren Autoren
%% ein "\" im Text steht und im Literatutverzeichnis ein ";"
\renewcommand*{\multinamedelim}{\addslash}
\renewcommand*{\finalnamedelim}{\addslash}
\AtBeginBibliography{%
  \renewcommand*{\multinamedelim}{\addsemicolon\space}
  \renewcommand*{\finalnamedelim}{\addsemicolon\space}
  %% setzt ";" vor u.a. im Literaturverzeichnis
  \renewbibmacro*{name:andothers}{%
    \ifthenelse{\value{listcount}=\value{liststop}\AND
    \ifmorenames}
    {\addsemicolon\space u.a.:}
    {}}
}

%% Sortiert Vorname und Nachname
\DeclareNameFormat{sortname}{% Bibliographie
  \iffirstinits
    {\usebibmacro{name:last-first}{#1}{#4}{#5}{#7}}
    {\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}}%
  \usebibmacro{name:andothers}}

\setlength\bibitemsep{\medskipamount}  %% Abstand zwischen Einträgen

%% Definiert @Book Eintrag
\DeclareBibliographyDriver{book}{%
  \printnames{author}%
  \newunit\newblockpunct
  \printfield{title}%
  \setunit*{.\space}%
  %\newunit\newblock
  \printfield{edition}%
  \setunit*{\addcomma\space}%
  \printlist{publisher}%
  \newunit\newblockpunct
  \printlist{location}%
  \setunit*{\space}%
  \printfield{year}%
  \finentry}

%% Definiert @Online Eintrag
\DeclareBibliographyDriver{online}{%
  \printnames{author}%
  \newunit\newblockpunct
  \printfield{title}%
  \setunit*{.\space}%
  \printfield{day}%
  \setunit*{.\space}%
  \printfield{month}%
  \setunit*{\space}%
  \printfield{year}%
  \setunit*{.\space}%
  %\newunit\newblock
  \printfield{url}%
  \setunit*{\space}%
  \printfield{note}%
  \finentry}

%% Definiert @Article Eintrag
\DeclareBibliographyDriver{article}{%
  \printnames{author}%
  \newunit\newblockpunct
  \printfield{title}%
  \setunit*{.\space In:\space}%
  %\newunit\newblock
  \usebibmacro{journal}%
  \setunit*{\space (}%
  \printfield{year}\newunit{)}%
  \finentry}

\DeclareFieldFormat{url}{\url{#1}}

\renewcommand{\bibfootnotewrapper}[1]{\bibsentence#1\addspace}

%%% Fußnoten ------------------------------------------------------------------------------------

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}

\DeclareCiteCommand{\footcite}[\mkbibfootnote]
  {\usebibmacro{prenote}}
  {
   \printnames{labelname}%
  \setunit*{\space}%
   \printfield{year}
   \setunit{\addcolon\addspace}
   \printfield[citetitle]{shorttitle}%
   }
  {\space}
  {\usebibmacro{postnote}}

%%% Abbildungssverzeichnis ----------------------------------------------------------------------

\usepackage{remreset}
\makeatletter
\renewcommand{\l@figure}{\@dottedtocline{1}{0.5em}{3em}}
\renewcommand{\l@table}{\@dottedtocline{1}{0.5em}{3em}}
\renewcommand \thefigure{Abb. \@arabic\c@figure\ }
\renewcommand \thetable{Tab. \@arabic\c@table }
\renewcommand*{\figureformat}{\thefigure}
\renewcommand*{\tableformat}{\thetable}
\renewcommand*{\captionformat}{: }
\makeatother
Die Style.tex Datei ist so groß weil ich nicht genau weiß, wo was geändert werden muss. Deshalb meine komplette Style.tex, die ich verwende.

Ich hoffe ihr könnt mir helfen

Schon mal Dankeschön!

Grüße Bilbo