R-Markdown(或更具体地说,bookdown)有没有办法自动给脚注编号,就像它已经为数字所做的那样?我正在处理一本书长度的项目,每次添加或删除脚注时不必重新编号所有脚注会很方便。
该号码是自动的,只需在 后使用不同的名称[^ ]
。
---
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)