[Tex/LaTex] Parenthesis style in bibtex citation

bibtexlyxnatbib

I am using LyX with bibtex and natbib for my citations. However, for some reason when I create the pdf, the citation comes out as Author [year] instead of Author (year). Is there a way to change the style of the parenthesis?

Best Answer

You should use the \setcitestyle command to set this. This is documented on page 12 of the natbib manual. A minimal document is

\documentclass{article}

\usepackage{natbib}
\setcitestyle{round}

\begin{document}
\cite{Test}

\bibliographystyle{plainnat}
\bibliography{test}
\end{document}

which with test.bib containing

@Article{Test,
  author =   {Author, A. N.},
  title =    {Title},
  journal =  {Journal},
  year =     2000
}

produces

Sample output

Related Question