A while back I asked for help to create a global rule for dropcaps using the Droplet
package, which was solved for me by @vmartel08. However, when using it in my project, I found that the first-line indent
on the following paragraph was not respected. Here’s an MWE:
set page(paper: "a7")
#import "@preview/droplet:0.3.1": dropcap
#set par(first-line-indent: 1em, spacing: 0.65em, justify: true)
// Keep original dropcap
#let orig-dropcap = dropcap
// My dropcap with my defaults
#let dropcap(body) = orig-dropcap(
height: 3,
gap: 1pt,
hanging-indent: 0em,
body,
)
= Heading
#dropcap[#lorem(20)]
#lorem(13)
#lorem(20)
How can the code be modified so that the second paragraph has the first-line indent like the third (and subsequent) paragraphs.
Many thanks.
Mark