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.