I am writing my thesis with by use of the classicthesis style by use of biblatex for my bibliography. biblatex offers a compatibility mode for natbib and all of the basic commands shall work according to the documentation of biblatex. However, the command \Citet{} which is important for capital letters of authors like "van Krevelen" or "de Nevers". In my case \Citet{} does the same like \citet{}
\documentclass[
twoside,openright,titlepage,numbers=noenddot,headinclude,
footinclude=true,cleardoublepage=empty,
headsepline,
dottedtoc,
BCOR=5mm,paper=a4,fontsize=11pt,
ngerman,american,
]{scrreprt}
\PassOptionsToPackage{utf8}{inputenc}
\usepackage{inputenc}
\usepackage[american]{babel}
\PassOptionsToPackage{%
backend=biber,
isbn = false,
doi = false,
language=auto,
style=authoryear-comp,
sorting=nyt,
maxbibnames=1,
natbib=true
}{biblatex}
\usepackage{biblatex}
\addbibresource{example.bib}
\usepackage{classicthesis}
\begin{document}
When citing with "Citet" one obtains for example:
\Citet{Krevelen.1950}.
\end{document}
with example.bib:
@article{Krevelen.1950,
author = {{van Krevelen}, D.W. and Hoftijzer, P.J.},
year = {1950},
title = {Studies of Gas Bubble Formation},
volume = {46},
number = {1},
journal = {Chemical Engineering Progress}
}
