Hier mal der Code vom Hauptfile:
\documentclass[a4paper, 11pt, ngerman, oneside,abstract=on,
oneside, notitlepage, headsepline]{scrreprt}%scrreprt
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman, english]{babel}
\usepackage{typearea}
\usepackage{pdfpages}
\usepackage[style=authoryear-icomp,hyperref,backend=bibtexu]{biblatex}
\usepackage[babel,german=quotes]{csquotes}
\bibliography{text.bib}
\usepackage[breaklinks=true]{hyperref}
%\usepackage[style=authoryear-comp, backend=biber]{biblatex}
%\usepackage[babel,german=quotes]{csquotes}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{url}
\usepackage{blindtext}
\usepackage{here}
\usepackage[bottom = 30mm]{geometry}
\usepackage[withpage,smaller]{acronym}%printonlyused,
\usepackage{relsize}
\usepackage{setspace}
\setstretch{1.25}
\usepackage[automark]{scrpage2}
\renewcommand*{\titlepagestyle}{empty}
\clearscrheadfoot
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\pagestyle{scrheadings}
\newcommand{\insertEmptyPage}{\newpage \thispagestyle{empty} \mbox{} \newpage}
\begin{document}
\selectlanguage{ngerman}
\input{titlepage.tex}
\input{abstract.tex}
\tableofcontents\thispagestyle{empty}
\input{dedication.tex}
%Begin of actual Content
\input{bericht.tex}
%Verzeichnisse
\listoffigures
\input{acronym.tex}
\printbibliography
%\printbibliography[type=online,heading=subbibliography,
% title={\chapter*{Internetquellen}}]
% \renewcommand{\leftmark}{\uppercase{\normalsize{Kapitel Internetquellen}}}
% \addcontentsline{toc}{chapter}{Internetquellen}
\appendix
\end{document}
Und hier das Bib-file
@ONLINE{defines,
author = {\textsc{Author Unbekannt}},
title = {C - Pre-Processors},
subtilte = {Pre- Processors Examples},
date = {ohne Jahr},
year = {ohne Jahr},
url = {http://www.tutorialspoint.com/ansi_c/c_preprocessors.htm},
urldate = {2011-12-15\vspace{0.5cm}},
}
@Online{Mittelwert,
author = {\textsc{Rudolf} \textsc{Brinkmann}},
title = {Mittelwert, Median und Modalwert},
subtitle = {Der Median (Zentralwert einer Datenreihe)},
date = {o.J.},
month = {ohne},
year = {ohne Jahr},
url = {http://www.brinkmann-du.de/mathe/gost/bstat_01_06.htm},
urldate = {2012-03-07\vspace{0.5cm}},
}
@Online{Hys,
author = {\textsc{Klinik f"ur Gyn"akologie und Geburtshilfe UK-SH, Campus Kiel}},
title = {Operationen},
subtitle = {Geb"ahrmutterspiegelung},
date = {o.J.},
month = {ohne},
year = {ohne Jahr\sloppy},
url = {http://www.unifrauenklinik-kiel.de/gebaermutterspiegelung},
urldate = {2012-03-08\vspace{0.5cm}},
}
@Article{IPOP,
author = {\textsc{W.O.M.}},
title = {Software Documentation H112},
date = {7. Dezember 2011},
year = {2011},
pages = {49--50},
eprinttype = {arxiv},
note = {\vspace{0.5cm}},
}
Wenn ich jetzt vor die URL nen Zeilenumbruch mache (z.B. so: url = {\\ http://www.unifrauenklinik-kiel.de/geba ... spiegelung},), dann steht da quasi:
Operationen. Gebaehrmutterspiegelung
URL:
http://www.unifrauenklinik-kiel.de/geba ... spiegelung
ich haette aber halt lieber:
Operationen. Gebaehrmutterspiegelung
URL: http://www.unifrauenklinik-kiel.de/geba ... spiegelung
Any suggestions?
Danke schonmal fuers drueber gruebeln!


