Bibtex \bibliographystyle{acm} 引用作者年份

Bibtex \bibliographystyle{acm} 引用作者年份

我想使用 acm 书目样式,其中作者姓名 + 年份代替数字。这可能吗?

\documentclass[12pt]{文章}
\usepackage[utf8]{输入框}
\usepackage{hyperref}
\usepackage{parskip} %有了这个,如果我不需要 \\
\usepackage{fancyhdr}
\usepackage{amsfonts,amsmath,amsthm,amssymb}
\usepackage{tikz}
\使用包[a4paper,
          包括头,       
          左={2.2 厘米},
          右={2.2厘米},
          顶部={2.2 厘米},
          脚注sep={15 pt},
          headsep={17 pt},
          头部高度={1.2 厘米}
          ]{几何学}
\linespread{1.5}
\setlength{\footnotesep}{10 pt}



\title{部分标题%
       \\
       \vspace{7pt}
       \normalsize\textbf{博士论文提案}}
\author{我}
\日期{\今天}

\开始{文档}
\pagestyle{花式}
\fancyhf{} % 清除现有的页眉/页脚条目
\fancyhead[L]{\rule[-1.6ex]{0pt}{1.6ex}\scriptsize\textbf{Bulgarelli}:\textit{市场结构与可持续性}}
\fancyhead[r]{\footnotesize\thepage}


\maketitle


\section*{简介}
Lorem ispum blablabla \cite{ellenmacarthur2022}。



\bibliographystyle{acm}
\bibliography{参考文献}
\结束{文档}

Bibtex 文件是:

@misc{ellenmacarthur2022, 
 author = {{Ellen MacArthur Foundation}},
 title = {Circular Economy Introduction},
 year = {2022},
 note = {see \url{https://ellenmacarthurfoundation.org/topics/circular-economy-introduction/overview}. Last accessed 02-September-2022}
}
 

答案1

首先,acm.bst已经过时了。使用ACM-Reference-Format.bst。其次,ACM-Reference-Format如果与 一起使用,可以生成作者年份引文natbib

因此,请添加到您的序言中

\usepackage{natbib}

并放入参考书目

\bibliographystyle{ACM-Reference-Format}
\bibliography{References}

你会得到

Lorem ispum blablabla 艾伦·麦克阿瑟基金会 (2022)。

相关内容