説明に URL の改行がありません

説明に URL の改行がありません

URL で改行する方法はいくつかあります。しかし、この例の URL を改行する方法を知っている人はいませんか? よろしくお願いします、Harald

\documentclass[
    10pt,
    twoside,
    toc=listofnumbered,
    listof=flat,
    headinclude,
    footinclude,
    index=numbered
]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} % HJELE: für Silbentrennung von Wörtern mit Umlauten via \hyphenation
\usepackage[ngerman]{babel}
\usepackage[hyphens]{url}
\usepackage{breakurl}
\usepackage[colorlinks,urlcolor=black,linkcolor=black,filecolor=black,citecolor=black]{hyperref}
\hypersetup{breaklinks=true}
\begin{document}
\begin{description}
\begin{sloppypar}
\item[\normalfont{Thaney, Kaitlin (2009):}] Laying out the Principles of Open Science. Vortrag am {\glqq}Open Science workshop :: PSB 2009{\grqq}, 5.1.2009, Big Island of Hawaii.\\
Online unter:\\
\url{https://de.slideshare.net/kaythaney/laying-out-the-principles-of-open-science-presentation}
\item[\url{https://www.springer.com/de/autoren-herausgeber/deutsche-publikationen/buchautoren/buchautoren-manuskript-richtlinien}:] Richtlinien zum Publizieren für Autoren und Herausgeber des Springer Verlags.
\end{sloppypar}
\end{description}
\end{document}

URL 内の改行

答え1

パッケージをロードせずbreakurl\usepackage[hyphens]{url}を に置き換え\usepackage{xurl}、リストの項目の引数に URL 文字列を含めないでくださいdescription

urlcolor=black, linkcolor=black, filecolor=black, citecolor=blackを に置き換えてもよいでしょうallcolors=black

ここに画像の説明を入力してください

\documentclass[
    10pt,
    twoside,
    toc=listofnumbered,
    listof=flat,
    headinclude,
    footinclude,
    index=numbered
]{scrbook}
%%\usepackage[utf8]{inputenc} % that's the default nowadays
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{xurl}
%%\usepackage[hyphens]{url}
%%\usepackage{breakurl}
\usepackage[colorlinks,allcolors=black]{hyperref}
%\hypersetup{breaklinks=true}

\begin{document}
\begin{description}

\item[]Thaney, Kaitlin (2009): Laying out the Principles of Open Science. 
   Vortrag am {\glqq}Open Science workshop :: PSB 2009{\grqq}, 5.1.2009, 
   Big Island of Hawaii.

Online unter:
\url{https://de.slideshare.net/kaythaney/laying-out-the-principles-of-open-science-presentation}

\item[]\url{https://www.springer.com/de/autoren-herausgeber/deutsche-publikationen/buchautoren/buchautoren-manuskript-richtlinien}: Richtlinien zum Publizieren für Autoren und Herausgeber des Springer Verlags.

\end{description}
\end{document}

関連情報