URL 链接仅中断一次

URL 链接仅中断一次

我有一个很长的 URL 需要在参考文献中显示,我使用了 BibTex 和包 URL,但是 URL 仍然中断了一次,而不是像它应该的那样中断了两次。在此处输入图片描述

答案1

在此处输入图片描述

使用xurl包。

\begin{filecontents*}{sample.bib}
@online{savitsky1976procedures,
    title={Procedures for hydrodynamic evaluation of planing hulls in smooth and rough water},
    author={Savitsky, Daniel and Brown, P Ward},
    journal={Marine Technology},
    volume={13},
    number={4},
    pages={381--400},
    year={1976},
    url={https://www.scribd.com/document/380272322/Savitsky-Brown-1976-Procedures-for-Hydrodynamic-Evaluation-of-Planing-Hulls-in-Smooth-Rough-Water-pdf}
}
\end{filecontents*}

\documentclass[]{book}

\usepackage[square,numbers]{natbib}

\usepackage{xurl}

\begin{document}

\cite{savitsky1976procedures}

\bibliographystyle{IEEEtran}
\bibliography{sample}

\end{document}

相关内容