我想在论文摘要中添加参考文献。此参考文献应为(作者、年份)之类的内容,而不是关键字,也不是完整的文献目录。有办法吗?
这个问题与这个但给出的答案并不完全是我想要的,因为摘要中引用了整个 bibentry。
梅威瑟:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{article,
title={My article},
author={Author McAuthorface},
journal={Such and such},
year={2017}
}
\end{filecontents}
\begin{document}
\begin{abstract}
I cite \cite{article} but I want to have (Mcauthorface, 2017)
\end{abstract}
Normal citations \cite{article} in the body of the text.
\bibliographystyle{acm}
\bibliography{\jobname.bib}
\end{document}