我正在准备一份 ASL 文档,但不明白ASL 出版物的文件准备足以让参考书目正常运行。我了解如何设置 asl.cls,并且熟悉在 nat.bib 下使用 bibtex。但我不了解 asl.bst 的作用,也无法设置 MWE 来编写我的文档。
有人能帮助我提供 MWE 或其他建议来解决我的问题吗?
答案1
该.bst
文件是参考书目样式文件。
MWE 可以是:
\documentclass{asl}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@article{test,
author = {Author},
title = {Title},
journal = {Journal},
volume = {1},
pages = {1--10},
year = {2020}
}
\end{filecontents}
\begin{document}
\cite{test}
\bibliographystyle{asl}
\bibliography{references}
\end{document}