我之前在 Windows 中使用 TeXstudio,现在在 Ubuntu 中切换到 TeXmaker。我很喜欢它,但缺少了一样东西。
在 TeXstudio 中,每当我输入时,\cite{
自动完成窗口都会出现,其中包含我的参考书目项目的名称。我所说的参考书目项目并不是指单独的 .bib 文件。我只是将它们放在文档末尾,如下所示:
% ... beginning of the document
\begin{thebibliography}{9}
\bibitem{wikipedia_article} \begin{verbatim} http://en.wikipedia.org/wiki/Article_name \end{verbatim}
\bibitem{mikolajczyk_paper} K. Mikolajczyk (2005) "A Comparison of Affine Region Detectors" , International Journal of Computer Vision
\end{thebibliography}
\end{document}
但是 TeXmaker 不会自动完成名称mikolajczyk_paper
和wikipedia_article
。我该如何让它工作?
谢谢你的帮助 !