作者姓名正在被 natbib 中使用 aer 样式的线条替换

作者姓名正在被 natbib 中使用 aer 样式的线条替换

我在使用 natbib 时遇到了虚线问题,并已将其替换为虚线。这与之前发布的问题类似(请参阅1234) 但这些都不是aer特别的风格。我怎样才能阻止虚线出现在我的参考文献中?dashed=false对我来说不起作用。

\documentclass[12pt]{article}
\usepackage{times}

\usepackage[]{natbib}
\usepackage{booktabs,caption,fixltx2e}
\usepackage[margin=1in]{geometry}
\usepackage{filecontents}
\begin{filecontents}{mini.bib}
@unpublished{bgs2015mac,
  title={Memory, Attention and Choice},
  author={Bordalo, Pedro and Gennaioli, Nicola and Shleifer, Andrei},
  note={Mimeo, Harvard University},
  year={2017}
}

@unpublished{bgs2019mac,
  title={Memory, Attention and Choice},
  author={Bordalo, Pedro and Gennaioli, Nicola and Shleifer, Andrei},
  note={Mimeo, Harvard University},
  year={2020}
}

\end{filecontents}


\raggedbottom
%\input{tcilatex}
\begin{document}

\title{\textbf{My Paper Title} \\
\bigskip }

\maketitle


\nocite{*} 

\bibliographystyle{aer}
\bibliography{mini}

\end{document}

生成: 在此处输入图片描述

答案1

这可以通过使用文档类AER的密切相关参数来解决AEA

\documentclass[AER]{AEA} %%% change here
\usepackage{times}

...

\bibliographystyle{aea}  %% change here
\bibliography{mini}

\end{document}

在此处输入图片描述

相关内容