书目问题

书目问题

这是我使用 latex 编写的:

\documentclass{iserc}

 \begin{document}
 ...
\begin{thebibliography}{1}
\bibliography{my-biblio}
\end{thebibliography}

\end{document}

但是当我编译它时,它给了我一个错误:

!Latex error: something's wrong-- perhaps a missing \item

答案1

你使用 BibTeX 吗?如果是,你需要删除\begin{bibliography}and \end{bibliography}。即

\documentclass{iserc}

\begin{document}
 ...
\bibliographystyle{unsrt} % <- Choose a style. Your document class may do this for you.
\bibliography{my-biblio}

\end{document}

您将需要运行pdflatex(或您使用的任何 LaTeX 变体),然后bibtexpdflatex运行两次才能使所有内容稳定下来。

如果您使用来自文件的直接输入(这种情况不太可能),则使用\input{my-biblio}而不是\bibliography{...}并保留\begin{bibliography}\end{bibliography}

期刊通常要求将您的参考书目直接放在 LaTeX 文档中。也许这就是引起混淆的地方。当您需要这样做时,请使用上面的代码,当您将其发送给期刊时,复制文件的内容.bbl并用内容替换\bibliographystyle{...}\bibliography{...}行。

相关内容