Markdownチュートリアル

脚注

学术文献常用的脚注语法

脚注语法

您可以添加注释和参考,而不会使正文混乱,当您创建脚注时:

  • 带有脚注的上标数字会出现在您添加脚注参考的位置
  • 读者可以点击链接以跳转页面底部的脚注内容

要创建脚注,请在方括号[]中添加符号和数字

  • 标识符号可以是数字和单词,但不能包含空格和制表符
  • 标识符仅将脚注参考与脚注本身相关联
  • 脚注按顺序编号
  • 脚注内容具有唯一性 ^Note^note 是不同的脚注
This is a footnote[^1],use to explain the text.
[^1]: This is the footnote content.

渲染效果如下:

This is a footnote1,use to explain the text.

脚注最佳实践


使用描述性标识符

使用描述性标识符使脚注更容易理解和维护。

This is a footnote[^important-note],use to explain the text.
[^important-note]: This is the footnote content.

多个脚注

您可以在同一文档中添加多个脚注。

This is a footnote[^1],use to explain the text.
This is another footnote[^2],use to explain the text.
[^1]: This is the first footnote content.
[^2]: This is the second footnote content.

渲染效果如下:

This is a footnote1,use to explain the text. This is another footnote2,use to explain the text.

Footnotes

  1. This is the footnote content. 2

  2. This is the second footnote content.