我在使用 natbib 时遇到了虚线问题,并已将其替换为虚线。这与之前发布的问题类似(请参阅1,2,3,4) 但这些都不是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}