latex 错误孤独的项目 - 也许在参考书目中缺少列表环境

latex 错误孤独的项目 - 也许在参考书目中缺少列表环境

我正在使用该thebibliography环境列出reportLaTeX 文件中的参考文献。

\bibitem每个句子中都会出现此错误

\begin{thebibliography}

\bibitem {Cluster}
\textbf{http://dictionary.reference.com/browse/cluster}
\bibitem {install}
\textbf{https://en.wikibooks.org/wiki/Building\_a\_Beowulf\_Cluster}


\end{thebibliography}

答案1

你缺少了 的强制参数\begin{thebibliography}。在你的情况下应该是

\begin{thebibliography}{9}

(任何一位数都可以)。如果您有超过 9 个项目,请使用 99。

最好每项后面都留一个空行。

也可以看看“thebibliography” 中的论点了解有关该问题的其他信息。


输入参考书目的更好方法是

\begin{thebibliography}{9}

\bibitem {Cluster}
\url{http://dictionary.reference.com/browse/cluster}

\bibitem {install}
\url{https://en.wikibooks.org/wiki/Building_a_Beowulf_Cluster}

\end{thebibliography}

对于该\url命令,您需要加载url

\usepackage{url}

如果您加载 ,它也是可用的hyperref。请注意,在第二个 URL 中,下划线不需要转义。

相关内容