
Considere este MWE:
\begin{filecontents}[overwrite]{\jobname.bib}
@article{vonSurname2020,
year = {2020},
author = {von Surname, Auhtor},
title = {Real Interesting},
journal = {International Journal of Honest Peer-reviewing}
}
\end{filecontents}
\documentclass{article}
\usepackage{natbib}
% \bibpunct[, ]{[}{]}{;}{a}{,}{,} % <---- good
\bibpunct[, ]{[}{]}{;}{n}{,}{,} % <---- bad
\begin{document}
\citet{vonSurname2020}
\Citet{vonSurname2020}
\bibliography{\jobname}
\bibliographystyle{unsrtnat}
\end{document}
Com a good
\bibpunct
linha ativada eu recebo:
mas se eu descomentar bad
\bibpunct
então:
Por que é que? Isso parece acontecer independentemente de qual \bibliographystyle
eu uso.
Como posso colocar o prefixo “von” corretamente em maiúscula com estilo numérico?
Responder1
Você pode tentar isso, mas não testei se funciona com listas de autores mais longas:
\usepackage{etoolbox}
\makeatletter
\patchcmd\NAT@citexnum{\let\NAT@nm\NAT@name}{\def\NAT@nm{\NAT@nmfmt{\NAT@name}}}{}{\fail}
\makeatother