无法打开reference.aux

无法打开reference.aux

这是我第一次在这里发布问题,我也是 Latex 的新手。这是我的问题:我无法编译我的参考文献,并且总是出现这个错误:

我无法打开文件名“reference.aux”

可能我必须安装一个额外的 .lib 但我不知道安装哪一个。

如果有人能给我一些建议我将不胜感激...

答案1

假设您的参考文献写在名为“ref.bib”的文件中,其中包含以下内容:

@article{latex1977,
    title={How to use latex},
    author={John Smith},
    journal={Journal of Latex},
    pages={1--50},
    volume={39},
    year={1977}
}

现在在你的主文件‘main.tex’中你必须有类似这样的内容:

\documentclass{article}
\begin {document}

...
\cite{latex1977}
...

\bibliography{ref}
\bibliographystyle{plain}

\end{document}

要编译您的文档,请执行以下步骤:

  1. 使用 latex 或 pdflatex 编译“main.tex”=> 此步骤将生成 main.aux 文件
  2. 使用 bibtex 编译“main.aux”(不是“ref.bib”)
  3. 使用 latex 或 pdflatex 编译两次“main.tex”

相关内容