[Tex/LaTex] Make apostrophe closer to letter

drop-capkerninglettrinetypography

I am using the lettrine package to typeset capitals. When there is an apostrophe with a capital L, the spaces look quite ugly. I would like to achieve something like the following:

target capital

I've already set some parameters of the capital to get close to it:

\lettrine[lines=3,lhang=0.33,lraise=0,loversize=0.15,findent=-1em,nindent=1.5em]{L'}{Esprit-Saint}

but the apostrophe is too far from the capital L. I've tried using \kern to get it closer, but I'm not getting anywhere really. Is there a way I can get the apostrophe aligned like in the given example?

Best Answer

\documentclass{article}
\usepackage[english]{babel}
\usepackage{lettrine,blindtext}
\begin{document}

\lettrine[lines=2,lhang=0.33,lraise=0,loversize=0.15,
  nindent=1.5em]{L\kern-5pt'}{Esprit-Saint}
\blindtext
\end{document}

enter image description here