[Tex/LaTex] Author-number citation with elsarticle

bibliographiesbibtexcitingelsarticlenatbib

With the elsarticle class, how can I achieve author-number citations?

This is what I need:

Smith and Dow [1] wrote

Using

\citep{SmithDow} wrote

only prints

[1] wrote

and

\citet{SmithDow} wrote

prints

(author?) [1] wrote

This journal does not use author-year style, so

Smith and Dow (2015) wrote

is not a solution.

I cannot change the options to natbib directly because elsarticle loads it automatically.

Best Answer

Use

\bibliographystyle{elsarticle-num-names}

instead of

\bibliographystyle{elsarticle-num}

Then

\citet{SmithDow} wrote

will print

Smith and Dow [1] wrote
Related Question