org-mode中的多段脚注

时间:2012-09-28 07:29:11

标签: emacs org-mode footnotes

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

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不删除脚注中的文本?

2 个答案:

答案 0 :(得分:6)

根据org mode manual

  

如果您需要在脚注中使用段落,请使用LaTeX惯用法   “\帕”。

它对我有用:

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

答案 1 :(得分:4)

对于通过谷歌访问或多年后访问的人(正如我所做的那样):现在不同了。可以轻松实现多个段落,因为脚注仅在连续两行空行后结束。

请参阅http://orgmode.org/manual/Footnotes.html

  

它在下一个脚注定义,标题或两个连续的空行后结束