(十分に小さい) オーバーフル ボックスの警告を非表示にするために を使用しているにもかかわらずhfuzz=…
、参考文献の URL でオーバーフル ボックスが発生すると、依然として警告が表示されます。なぜでしょうか。警告を消すにはどうすればよいですか。
たとえば、次の例では、本文の overfull 行では警告は生成されません (これは がhfuzz
有効であることを示します) が、参考文献の (less) overfull 行では警告が生成されます。
\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にリセットされます。より大きなhfuzzを設定するか、追加するために再定義することができます\sloppy
。
\usepackage{xurl}