我在用
\bibliographystyle{siamplain}
下载自 https://www.siam.org/journals/tex/online/siamplain.bst
我怎样才能在 中放置siamplain.bst
诸如 之类的文本引用?\citeA
apacite
答案1
书目样式siamplain
似乎无法生成作者年份样式的引用标注,无论是“文本”——例如“作者(2016)”——还是“括号”——例如“(作者,2016)”。
生成普通,即数字、引用标注,只需使用\cite
命令。
如果您希望使用引文管理包以及siamplain
参考书目样式,引用包可能提供了您可能需要的所有功能和选项。如果您更喜欢使用natbib
引文管理包,请务必使用选项加载它numbers
。我看不出有什么理由将该apacite
包与siamplain
参考书目样式一起使用。
完整的 MWE:
\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@article{abc,
author = "Anna Author",
title = "Thoughts",
journal = "Circularity Today",
year = 3001,
volume = 1,
number = 2,
pages = "3-4",
}
\end{filecontents}
\documentclass{article}
\bibliographystyle{siamplain}
\usepackage{cite} % optional
\begin{document}
\cite{abc}
\bibliography{mybib}
\end{document}