underfull \hbox(不良率 10000)

underfull \hbox(不良率 10000)

你好,下面的参考书目列表中出现了 \hbox 未满(badness 10000)错误,但不知道为什么?

\bibitem{application 1}
K. Conrad
\textit{http://www.math.uconn.edu/$\sim$kconrad/blurbs/gradnumthy/mordelleqn1.pdf} 
(accessed on 09/01/2016).

有人可以帮忙吗?

答案1

我总是在右边设置一个带有长 URL 的参考书目:

\usepackage{ragged2e}
...

{\RaggedRight
 \begin{thebibliography}{...}
 \bibitem{application 1}
    K. Conrad
    \url{http://www.math.uconn.edu/~kconrad/blurbs/gradnumthy/mordelleqn1.pdf} (accessed on 09/01/2016).
 ...
 \end{thebibliography}%
}

或者由bibtex

\usepackage{ragged2e}
...

{\RaggedRight
 \bibliographystyle{...}
 \bibliography{...}%
}

biber

\usepackage{ragged2e}
\usepackage{biblatex}
\addbibresource{...}
...

{\RaggedRight
 \printbibliography[...]%
}

相关内容