儘管有 hfuzz,但參考書目 URL 中的 \hbox 已滿

儘管有 hfuzz,但參考書目 URL 中的 \hbox 已滿

儘管用於hfuzz=…隱藏(足夠小)過滿框的警告,但我的參考書目中的 URL 中發生的過滿框仍然顯示警告。為什麼?我怎樣才能擺脫警告?

為了說明這一點,在下面的範例中,正文中的過滿行不會產生警告(這表明警告hfuzz有效),但參考書目中的(較少)過滿行會產生警告。

\begin{filecontents}{example.bib}
  @techreport{report,
    author = {Unknown, U. and Unknown, U.},
    institution = {Institution},
    title = {Some title},
    url = {https://www.example.com/some-very-long-url-with-much-text/and-a-second-part-that-is-overly-long-as-well-and-fills-the-line/},
    year = {2015}
  }
\end{filecontents}
 
\documentclass{article}
\usepackage{natbib}
\usepackage{hyperref}
\bibliographystyle{abbrvnat}

\hfuzz=4cm

\begin{document}
This url \url{http://www.example.com/is-overly-long-but-raises-no-warnings/is-overly-long-but-raises-no-warnings/is-overly-long-but-raises-no-warnings} 
\citep{report}.

\bibliography{example}

\end{document}

答案1

如果你添加

\show\thebibliography

你會看見

> \thebibliography=\long macro:
#1->\bibsection \parindent \z@ \bibpreamble \bibfont \list {\@biblabel {\the \c
@NAT@ctr }}{\@bibsetup {#1}\global \c@NAT@ctr \z@ }\ifNAT@openbib \renewcommand
 \newblock {\par }\else \renewcommand \newblock {\hskip .11em \@plus .33em \@mi
nus .07em}\fi \sloppy \clubpenalty 4000\widowpenalty 4000 \sfcode `\.\@m \let \
NAT@bibitem@first@sw \@firstoftwo \let \citeN \cite \let \shortcite \cite \let 
\citeasnoun \cite .
l.18 \show\thebibliography

所以它確實\sloppy

\DeclareRobustCommand\sloppy{%
  \tolerance 9999%
  \emergencystretch 3em%
  \hfuzz .5\p@
  \vfuzz\hfuzz}

因此\hfuzz在參考書目中重置為 0.5pt。您可以重新定義\sloppy更大的 hfuzz 或添加

\usepackage{xurl}

所以線路不會太滿 在此輸入影像描述

相關內容