설명에 URL 줄 바꿈이 없습니다.

설명에 URL 줄 바꿈이 없습니다.

URL에 줄바꿈을 하는 방법에는 여러 가지가 있습니다. 하지만 이 예에서 URL을 해독하는 방법을 아는 사람이 있나요? 고마워요, 해럴드

\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}

관련 정보