I'm currently working on my thesis and I am trying to cite a Dutch author. Some Dutch surnames have a "von" component (e.g., van, van der, de) which should be capitalized if and only if the first name is not included.
To remedy this, natbib allows you to use either \citet or \Citet to manage the capitalization. The \Citet command, however, seems to be broken when the numbers option is used. In this case, the "von" component is left uncapitalized.
Below I have included a MWE.
.tex:
\documentclass{article}
\usepackage[numbers]{natbib}
\begin{document}
\citet{vannoort}
\Citet{vannoort}
\bibliography{library}
\bibliographystyle{unsrtnat}
\end{document}
.bib:
@article{vannoort,
author={van Noort, Thomas},
title={An important paper},
year=2010,
}
Is there a way to solve this?
natbib? – egreg May 07 '14 at 21:33\Citetcommand correctly capitalizes the name. So I think it's a bug in the natbib package. – irundaia May 07 '14 at 21:35\usepackage[natbib,useprefix]{biblatex}and\addbibresource{library.bib}in the header, and the two cites give different results as intended. – pst May 07 '14 at 21:49natbib, because the code for the capitalization is never executed with thenumbersoption. – egreg May 07 '14 at 21:49