My article was written in achemso style, but the editor requires us to change the references into 'Harvard style' (the target journal does not provide a template).
Is there any quick method that I can just change the reference into a 'Harvard style'?
I'm using Overleaf by the way.
My present file looks like this:
\documentclass[journal=jacsat,manuscript=article]{achemso}
\usepackage[version=3]{mhchem} % Formula subscripts using \ce{}
\newcommand*\mycommand[1]{\texttt{\emph{#1}}}
\author{}
\author{}
\author{}
\affiliation[\]{}
\title[An \textsf{achemso} demo]
\begin{document}
...
\bibliography{}
\end{document}
achemsois the document class for submissions to journals of the American Chemical Society. The bibliography style is pretty much hard coded in that class. If you don't submit to an AChemSoc. journal you may be better of choosing a different document class. – moewe May 14 '20 at 06:22natbibwith theauthoryearoption (\usepackage[authoryear]{natbib}) and use one of thenatbibstandard styles (\bibliographystyle{plainnat}) you get something that can be called 'Harvard style'. – moewe May 14 '20 at 06:35\parencite{pauling1960}it shows like this(Pauling 1960)rather than(Pauling, 1960). – y ing May 14 '20 at 08:34