使用 siamplain.bst 进行文本引用

使用 siamplain.bst 进行文本引用

我在用

\bibliographystyle{siamplain}

下载自 https://www.siam.org/journals/tex/online/siamplain.bst

我怎样才能在 中放置siamplain.bst诸如 之类的文本引用?\citeAapacite

答案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}

相关内容