Bibliographies – How to Cite Inline in the Form ‘Name (Year)’ in LaTeX

bibliographiesciting

I have been asked to present my inline citations as "name (year)" rather than "(name, year)" although I'm not sure what this type of citation is called. I have been using the apacite package so far for citations with bibtex. I would like some assistance to change the way this is presented and which packages to use, thank you.

Best Answer

\documentclass{article}
\usepackage[natbibapa]{apacite}

\begin{document}
\cite{doody}

\citep{doody}

\citet{doody}


\bibliographystyle{apacite}
\bibliography{biblatex-examples}
\end{document}

enter image description here