我在引用参考书目中的一篇文章时收到了警告:
警告:第618--619行段落中的不足\hbox (坏的6510)
在我的胶乳档案里。
\documentclass[a4paper,12pt]{report}
\begin{document}
\begin{thebibliography}{00}
\bibitem{backpropagation}
Rumelhart, D., Hinton, G. \& Williams, R. Learning representations by back-propagating errors. Nature 323,533–536 (1986). https://doi.org/10.1038/323533a0
\end{thebibliography}
\end{document}我该怎么解决这个问题?
发布于 2021-01-14 14:23:47
问题是,你的国防部没有打破线。为了避免这种情况,您可以使用xurl包:
\documentclass[a4paper,12pt]{report}
\usepackage{xurl}
\begin{document}
\begin{thebibliography}{00}
\bibitem{backpropagation}
Rumelhart, D., Hinton, G. \& Williams, R. Learning representations by back-propagating errors. Nature 323,533–536 (1986). \url{https://doi.org/10.1038/323533a0}
\end{thebibliography}
\end{document}

如果链接中间的此行中断太过激进,您还可以尝试使用url或hyperref包:
\documentclass[a4paper,12pt]{report}
\usepackage{url}
\begin{document}
\begin{thebibliography}{00}
\bibitem{backpropagation}
Rumelhart, D., Hinton, G. \& Williams, R. Learning representations by back-propagating errors. Nature 323,533–536 (1986). \url{https://doi.org/10.1038/323533a0}
\end{thebibliography}
\end{document}

https://stackoverflow.com/questions/65720526
复制相似问题