我有一个带有脚注的 org-mode 文档:
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 模式下无法使用多个段落脚注。一个半解决方案是为每个段落制作一个单独的脚注,但我不希望这样。
是否有可能保留脚注中的结构?我应该怎么做才能使 org-mode 不删除脚注中的文本?