When using lettrine to draw big capitals, the first word after the initial is never in alignment with the lines below. It does not follow the same "margin line", as it were, and it links up with the initial before it.
If possible, I would prefer to avoid this, and have the first word after the lettrine capital be in alignment with the lines underneath (see the attached image).
Sample code:
\documentclass[10pt]{article}
\usepackage{lipsum}
\usepackage{lettrine}
\begin{document}
\lettrine{E}{xample} \lipsum[1]
\end{document}
Which produces the image attached. Is there any way to make the circled "X" respect the red line drawn?


\lettrine{E}{\hspace*{0.5em}xample}because the defaultnindentis0.5em. The output you seem to be looking for is obtained e.g. here. – Nov 24 '19 at 12:24lettrinein a single document, this works just fine. Thank you! – Joel Dacasa Nov 24 '19 at 12:25