脚注自动编号?

Tod*_*gel 5 r r-markdown

R-Markdown(或更具体地说,bookdown)有没有办法自动给脚注编号,就像它已经为数字所做的那样?我正在处理一本书长度的项目,每次添加或删除脚注时不必重新编号所有脚注会很方便。

RLa*_*ave 6

该号码是自动的,只需在 后使用不同的名称[^ ]

---
title: "Untitled"
output: html_document
---

footnote 1 [^anyname]

[^anyname]: Here is the first 

footnote 2 [^anyname2]

[^anyname2]: Here is the second 
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明