如何在没有 latex 的情况下运行 bibtex?

如何在没有 latex 的情况下运行 bibtex?

我有 bibtex 文件。我想只运行 bibtex 而不使用 pdflatex。我知道 bibtex 将使用 pdflatex 生成的辅助文件。但是有没有其他方法可以在 .bst 文件上运行 bib 文件。因为我希望我的 bib 文件被设计为 .bst 文件模板。那么,如何运行 bib 文件以获取具有定义结构的参考文献。(命令类似于:bibtex 文件名)。我没有 tex 文件。我只想运行 bibtex 文件。而且我不需要引用,结构化的参考文献就足够了。请帮忙!

答案1

我们假设您有以下文件/设置:

  • mybibstyle.bst

  • mybibliography.bib

myfile.aux创建一个包含以下内容的文件:

\relax 
\citation{*}
\bibstyle{mybibstyle}
\bibdata{mybibliography}

这实际上是编译以下最小示例的输出:

\documentclass{article}
\begin{document}
\nocite{*}
\bibliographystyle{mybibstyle}
\bibliography{mybibliography}
\end{document}

现在运行

bibtex myfile

它读取mybibliography.bibmyfile.aux和并创建包含基于的环境的mybibstyle.bst文件。myfile.bblthebibliographymybibstyle.bst

相关内容