[Tex/LaTex] Capital letters and lettrine

capitalizationlettrine

I have a problem with lettrine

\lettrine{A}fin

The code above gives me the A and F as capital letters, and I'd like the only A be a capital letter .

How can I do this?

Best Answer

You can set

\renewcommand{\LettrineTextFont}{\normalfont}

MWE:

\documentclass{article}
\usepackage{lettrine}
\renewcommand{\LettrineTextFont}{\normalfont}
\begin{document}
  \lettrine[lines=2,lraise=0]{A}{fin} and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text  and some text
\end{document}

enter image description here