如何进行简单快速的引用

如何进行简单快速的引用

我一直遵循这个简单干净的命令来创建快速参考。

\documentclass{article}
\begin{document}
  .....
\begin{thebibliography}{9}
\bibitem{lamport94}
  Leslie Lamport,
  \emph{\LaTeX: A Document Preparation System}.
  Addison Wesley, Massachusetts,
  2nd Edition,
  1994.


\end{thebibliography}
\end{document}

但它说未定义的控制序列如下

! Undefined control sequence.
<argument> \@listctr 

l.949 \bibitem{lamport94}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - 更新

我不确定这是否算编译成功,但在 TextWork 中多次点击 Enter 后,它最终让我看到了类似这样的内容 在此处输入图片描述

如果你能放大地图,你会发现参考文献的表现并不像预期的那样。“thebibliography”不知怎么就溜进了文本中

答案1

事实上,参考书目(Lamport 参考文献)中的第一行当前beginthebibliography9以以下代码开头:

\begin{thebibliography}{9}
begin{thebibliography}{9}
\bibitem{lamport94}
...

您需要删除中间的一行,即

begin{thebibliography}{9}

相关内容