Ich habe das Problem, dass die langen Labels in die Quellenangabe eingerückt werden.

Hier mein Beispiel:
Code:
\documentclass[a4paper,fontsize=12pt,pointlessnumbers,]{scrreprt}
\usepackage{scrpage2}
\usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
acronym,      %ein Abkürzungsverzeichnis erstellen
toc	          %Einträge im Inhaltsverzeichnis
]
{glossaries}
\usepackage{setspace}
\usepackage{titlesec}
\usepackage[ngerman]{babel}
\usepackage{url}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
\usepackage{textcomp}
\usepackage{bibgerm}
\usepackage{graphicx}
\usepackage{array}
\usepackage{mathtools}
\usepackage{remreset}
\usepackage{amssymb}
\usepackage[square]{natbib}
\usepackage[justification=centering]{caption}
\usepackage[left=3cm,top=3cm,right=2cm,bottom=2cm,nohead,foot=1cm]{geometry}
\newglossary[slg]{symbols}{syi}{syg}{Symbolverzeichnis}
\makeglossaries
\pagestyle{scrheadings}
\clearscrheadfoot
\ofoot[\pagemark]{\pagemark}
\input{header}
\makeatletter
\@removefromreset{footnote}{chapter}
\renewcommand*\env@cases[1][1.2]{
  \let\@ifnextchar\new@ifnextchar
  \left\lbrace
  \def\arraystretch{#1}
  \array{@{}l@{\quad}l@{}}}
\makeatother
\setlength{\parindent}{0.65cm}
\setkomafont{sectioning}{\normalcolor\bfseries}
\begin{document}
\renewcommand*{\chapterheadstartvskip}{\vspace*{-20mm}}
\renewcommand{\acronymname}{Abkürzungsverzeichnis}
\glossarystyle{super}
\renewcommand*{\glspostdescription}{}
\renewcommand{\glsgroupskip}{}
\renewcommand{\glsdescwidth}{12 cm}
\newcommand{\myfootnote}[1]{\footnote{\parbox[t]{0.98\textwidth}{ #1\vspace{0.5em}}}}
\setstretch{1,5}
\include{Kapitel/MeinText}
\bibliographystyle{geralpha}
\bibliography{Literaturverzeichnis}
\end{document}
Einträge in meiner bib-Datei:
Code:
@article{GARNETT02,
	author=	 {O. Garnett and A. Mandelbaum and M. Reiman},
	title=		 {Desiging a Call Center with Impatient Customers},
	journal=	 {Manufacturing \& Service Operations Management},
	year=		 {2002},
	volume=	 {4},
	number=	 {3},
	pages=	 {208--227},
}
@incollection{VDI3633,
	author=			{{Verein Deutscher Ingenieure (VDI)}},
	title=			{VDI-Richtlinie 3633. Simulation von Logistik-, Materialfluß- und Produktionssystemen. Begriffsdefinitionen},
	booktitle=	{VDI-Hand\-buch Materialfluß und Fördertechnik},
	publisher=	{Beuth Verlag},
	year=				{1996},
	volume=			{8},
	address=		{Berlin},
}
Im Text referenziert mit
Code:
Das Label dieser Literaturangabe ist zu lang \citep{GARNETT02}.

Dieses ist ok \citep{VDI3633}.
Danke und Gruß
Sabine