我有一个带有脚注的组织模式文档:

This some text[fn:1]. This is another text[fn:2].

* Footnotes

[fn:1] This is footnote's first line.

This is footnote's second line.

[fn:2] Another footnote

然后我通过按 C-u C-c C-x f S - org-footnote-action 执行 (org-footnote-renumber-fn:N)(org-footnote-normalize 'sort) 来重新编号脚注。结果是:
This some text[fn:1]. This is another text[fn:2].

* Footnotes

[fn:1] This is footnote's first line.

[fn:2] Another footnote

脚注的第二段丢失。这使得在组织模式下不可能有多个段落脚注。一个半解决方案是为每个段落制作一个单独的脚注,但我不想要那样。

是否有可能保留脚注中的结构?我该怎么做才能使 org-mode 不删除脚注中的文本?

最佳答案

根据 org mode manual :



它对我有用:

This some text[fn:1]. This is another text[fn:2].

* Footnotes

[fn:1] This is footnote's first line.\par
\par
This is footnote's second line.

[fn:2] Another footnote

关于emacs - 组织模式下的多个段落脚注,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12635519/

10-11 20:40