[Tex/LaTex] natbib does not properly show author-year

citingnatbib

I imported natbib properly:

\usepackage{natbib}

Now, when citing in the parenthetical style:

\citep[p. 12]{MyKey}

, where I am sure that my key exists and the author and year are set, in the pdf output it still shows

(1, p.12)

However, I would like to see

(Author Year, p.12) 

Did I miss something?

Also, doing

\usepackage[authoryear]{natbib}

doesn't help.

Best Answer

Sorry, but I already solved it. The solution is to use the right bibliographystyle, namely:

\bibliographystyle{plainnat}

Now it works.