bookdown/rmarkdown 脚注中的块引用

Block quote in bookdown/rmarkdown footnotes

我在 thesisdown 中写作(基于 bookdown)。我的一个脚注包含一段相当长的引述,^[footnote text] 不起作用,因为,

如果我使用

hey^[as he says:
> some quotes
]

在脚注中给出“as he says: > some quotes”,如果我这样写:

hey^[

as he says:
> some quotes

]

或者这个:

hey^[
as he says:

> some quotes
]

它将其解释为正文中的普通文本,而不是脚注。

我该怎么做?提前致谢。

对于包含多个段落的脚注,您应该使用 regular footnote syntax。你的情况:

hey[^1]

[^1]: as he says:

    > some quotes

    regular text

注意以下段落的缩进有四个空格。