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

How can I do it so that following paragraphs are built around the lettrine instead of overlapping it?
Using the lettrine package, big drop caps can sometimes overlap next paragraphs, as show here:

How can I do it so that following paragraphs are built around the lettrine instead of overlapping it?
@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:

\\\indent. – egreg Jul 29 '11 at 23:01\parusing\prevgraf(there is a code somewhere in The TeXbook, but I don't have it at home). Note that this might not be robust with respect toitemizeor other atypical things.If you don't have access to The TeXbook, just write a comment here and I will post working code tomorrow.
– mbork Jul 29 '11 at 23:16\parshape, so it's not compatible withlistbased environments. The code might be something like{\par\xdef\kpd{\the\prevgraf}}\everypar={\prevgraf\kpd\everypar{}, perhaps with some other code to keep the previous contents of\everypar. I'd say that\\\indentis more economic. – egreg Jul 30 '11 at 08:25Solution with
– mbork Jul 30 '11 at 08:48\\\indentis very nice, I'll remember it (I need wrapping from time to time, too).fontspec. – raphink Aug 28 '12 at 18:48