I'm having a dashed line issue using natbib and having replaced with a dashed line. This is similar to previously posted issues (see 1, 2, 3, 4) but none of these are in aer style specifically. How can I stop dashed lines from showing up in my references? dashed=false does not work for me.
\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}


aerbib style is programmed to replace repeated author names with em-dashes. If you do like this setting, you should probably not be using theaerbib style to begin with. – Mico Jul 27 '20 at 04:24aerbibliography style is programmed to substitute repeated authors' names with em-dashes and that loading thenatbibcitation management system cannot affect this programming decision. Leave it up to him/her to decide whether it's necessary to switch to a different bibliography style. (If he/she does decide on such a switch, you could recommend theplainnatbibliography style...) – Mico Jul 27 '20 at 15:59natbiband, say, theplainnatbibliography style. – Mico Jul 27 '20 at 16:58