[Tex/LaTex] apacite bibliography style doesn’t in Elsevier latex format

apa-stylebibliographies

I have to change my bibliography style in an Elsevier latex format article to apacite. These packages are in the text:

\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{apacite}
\modulolinenumbers[5]
\journal{Journal of \LaTeX\ Templates}

And:

\cite{Feynman1963118}

\bibliography{mcpso}

But I get a bunch of errors while compiling it. I tried to use apacite in a simple \documentclass[10pt,a4paper]{article} and it works well, but couldnt figure it out in \documentclass[review]{elsarticle}.

I would appreciate your helps.

Best Answer

I'd recommend you to use the Elsevier version of the APA style instead of apacite. You can download the template with bibliography styles from Elsevier.com/LaTeX. The following will approximate apacite:

\bibliographystyle{model5-names}
\biboptions{authoryear}
Related Question