Currently, the leading of footnote paragraphs is larger than their spacing. How to decrease their leading so that it will be the same as their spacing?
You can change the gap between footnotes using the “gap” parameter of footnote.entry like this: #set footnote.entry(gap: 0.8em)
full example (from the documentation):
@jsx97 I’m a bit confused that this solves your problem: this affects the gap between different footnotes, not between paragraphs of the same footnote. Isn’t that what you actually wanted?
Yeah, sry, my bad. I think the following should be what you want to achieve:
You can use
#show footnote.entry: it => [#show par: set block(spacing: 0.15cm)
#it
]
to change the content of each footnote entry. So you basically have the body of the footnote (called “it”) as an parameter. Then you can achieve the spacing by first applying #show par: set block(spacing: 0.15cm). Then you use #it to still have the content you wrote into the body of the footnote in it. It is important that the #it is in a new line, but you could also use ; instead.
Again, sry for the misunderstanding. Hope this is what you are looking for
Feel free to ask further questions if needed
Thanks a lot, this works as expected. It seems that by separating them with a semicolon, I can move #it on the same line with #show. Also, it seems that by replacing square brackets with figure ones, I can remove #:
#show footnote.entry: it => [#show par: set block(spacing: 0.15cm); #it]
#show footnote.entry: it => {show par: set block(spacing: 0.15cm); it}