[Tex/LaTex] Preventing drop caps from overlapping next paragraph

drop-caplettrine

Using the lettrine package, big drop caps can sometimes overlap next paragraphs, as show here:

overlap

How can I do it so that following paragraphs are built around the lettrine instead of overlapping it?

Best Answer

@egreg's suggestion works fine. So since I already had a command to typeset for each paragraph (\bverse), I made a new command (\bversenopar) and didn't skip a line:

\newcounter{verse}                                                              
\newcommand{\bverse}{%                                                          
  \addtocounter{verse}{1}                                                       
  \par\theverse~                                                                
}                                                                               

\newcommand{\bversenopar}{%                                                     
   \addtocounter{verse}{1}\\\indent\theverse~                                   
}        

And it works fine:

no overlap

Related Question