Hallo,

habe vor der Abgabe meiner BA noch ein kleines Problemchen. Und zwar ist es so, dass eine URL im Quellenverzeichnis nicht ordentlich umgebrochen werden kann und somit in den Rand hineinragt. Ich habe da vor einiger Zeit schon einige Sachen wie
Code:
\usepackage[hyphenbreaks, preserveurlmacro]{breakurl}
ausprobiert. Aber das blieb alles ohne Erfolg.

Hier ein Minimalbeispiel:
Code:
\documentclass[
a4paper, 						
fontsize=11,					
BCOR=10mm,
DIV=11,																							
]{scrreprt}

\usepackage[ngerman]{babel}					
\usepackage[latin1]{inputenc}				
\usepackage[T1]{fontenc}								
\usepackage{lmodern}						
\usepackage{microtype}	
\usepackage[
	style=numeric, 
	maxnames=1,
	bibencoding=latin1,
	backend=bibtex8,
	defernumbers=true,
	hyperref=true,
	alldates=long
]{biblatex}
\usepackage[hyphenbreaks, preserveurlmacro]{breakurl}
\usepackage[breaklinks=true
]{hyperref}

\begin{filecontents}{bachelorarbeit_lit.bib}
@ONLINE{java96,
	author = {{Sun Microsystems}},
	title = {JavaSoft ships Java 1.0},
	year = {1996},
	month = {1},
	url = {http://findarticles.com/p/articles/mi_m0EIN/is_1996_Jan_23/ai_17853565/?tag=content;col1},
	urldate = {2011-03-02},
	sortname = {Sun},
	keywords = {www}
}

@ONLINE{java02,
	author = {{Computer Weekly}},
	title = {Write once, run anywhere?},
	year = {2002},
	month = {5},
	url = {http://www.computerweekly.com/Articles/2002/05/02/186793/Write-once-runany\hyphenwhere1.htm},
	urldate = {2011-03-02},
	sortname = {Computer},
	keywords = {www}
}
\end{filecontents}

\bibliography{bachelorarbeit_lit}

\begin{document}
\chapter{Test}
Test \cite{java02}
Test \cite{java96}
\printbibliography
\end{document}
Im Original sieht es sogar noch schlimmer aus. Deshalb habe ich hier an den Link noch eine "1" drangehangen.

Hat jemand eine Lösung?

Vielen Dank im Voraus

Martin