Ich habe bei zwei Quellen ein Problem mit dem Zeilenumbruch. Jemand eine Idee, wie ich das lösen kann?
\documentclass[
BCOR=5mm,
DIV=10,
fontsize=11pt,
oneside,
parskip,
bibliography=totoc,
listof=totoc,
fleqn,
numbers=noenddot
]{scrbook}
\usepackage{scrhack}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[ngerman]{translator}
\usepackage{blindtext}
\usepackage[automark,headsepline,plainheadsepline,plainfootsepline,footsepline]{scrlayer-scrpage}
\usepackage[inner=2.5cm,outer=2.5cm,top=2.0cm,bottom=1.0cm,includeheadfoot,headheight=18.25pt]{geometry}
\usepackage[section]{placeins}
\clearpairofpagestyles
\ohead*{\headmark}
\cfoot*{\thepage}
\addtokomafont{pagehead}{\sffamily\scshape\bfseries\large}
\addtokomafont{pagenumber}{\sffamily\mdseries}
\begin{filecontents}{quellen.bib}
@misc{vdi,
author = {Verein Deutscher Ingenieure},
shortauthor = {VDI},
year = {1998},
location = {Düsseldorf},
title = {VDI 2225-3 Konstruktionsmethodik},
subtitle = {Technisch-Wirtschaftliches Konstruieren},
titleaddon = {Technische-wirtschaftliche Bewertung},
type = {Norm}
}
@patent{zeiss,
author = {Carl Zeiss Industrielle Messtechnik GmbH},
shortauthor = {Zei},
title = {Haltevorrichtung, Gegenhalteranordnung und Verfahren zur Einstellung einer Haltevorrichtung},
year = {2015},
month = {02},
day = {05},
number = {WO 2015/014398 A1},
type = {Patent}
}
\end{filecontents}
\usepackage[autostyle=true,german=quotes]{csquotes}
\usepackage[style=alphabetic,backend=biber]{biblatex}
\setcounter{biburllcpenalty}{9000}% Kleinbuchstaben
\setcounter{biburlucpenalty}{9000}% Großbuchstaben
\setcounter{biburlnumpenalty}{9000} %Zahlen
\addbibresource{quellen.bib}
\begin{document}
\blindtext \cite{vdi}
\blindtext \cite{zeiss}
\printbibliography[title={Literaturverzeichnis}]
\end{document}




