[Tex/LaTex] How to force lower case in the title

capitalizationtitles

I need to force some letters to be lower case in the title because it is part of a mathematician's name (deRham). How can I do that?

Best Answer

You could use \MakeLowercase:

\documentclass{amsart}

\title{Topics on \MakeLowercase{de} R\MakeLowercase{ham} cohomology}
\author{The Author}

\begin{document}

\maketitle

\end{document}

enter image description here

I am not sure about using lowercase for the last name; perhaps

\title{Topics on \MakeLowercase{de} Rham cohomology}

could be better?