I haven't managed to produce the bibliographic entries for several newspapers that are in English and Spanish. I am using natbib and the bibliography style is aer. Here is the minimal code.
\documentclass[11pt]{article}%
\usepackage{natbib}
\bibliographystyle{aer}
\begin{document}
\citeauthor{smercantil}
\citeauthor{nyt}
\citeauthor{mexherald}
\citeauthor{eemex}
\cite{reinhartrogoff2009}
\bibliography{overleafhelp}
\end{document}
The bib file is here:
@misc{em,
author={{El Economista Mexicano}},
note={Mexico City. Various issues}
}
@misc{mexherald,
author={{The Mexican Herald}},
note={\textup{Mexico City. Various issues}\upshape}
}
@misc{nyt,
author={{The New York Times}},
note={\textup{Various issues}\upshape}
}
%note={\textup{Various issues}\upshape}
@misc{smercantil,
title={Semana Mercantil},
howpublished={\textup{Mexico City. Various issues}\upshape},
note={Available on http://www.hndm.unam.mx/index.php/es/}
}
@book{reinhartrogoff2009,
title={This time is different: Eight centuries of financial folly},
author={Reinhart, Carmen M and Kenneth S. Rogoff},
year={2009},
publisher={Princeton University Press}
}
After several more rounds of experimenting, I'm down to just 1 problem: somehow forcing the placement of certain *.bib entries when using @misc. I used @misc as this seemed to be the best way to place newspapers with no author and date, but the placement does not ignore the "The" (the indefinite article). So, the "The Mexican Herald" correctly goes before "The New York Times, but both should go before "Reinhart." (I'd have the same ordering issue with the "El" in "El Economista Mexicano" but it's not messing anything up in this bibliography.)

}
– patricer Feb 03 '20 at 00:03\noop. Also, you don't have to impose ordering on all citations, only on the ones that do not have the correct alphabetical ordering because they start with the or el. And with the search and replace feature of your editor, possibly combined with regular expressions, you should be able to add the\noopto all relevant entries relatively easily. – Marijn Feb 03 '20 at 07:09