脚注内的 Rmarkdown Latex 引文(哈佛风格)

Rmarkdown Latex citation (Harvard style) within footnote

我在 Rmarkdown 和 Latex 中使用包含 bibtex 源的单独 literature.bib 文件写我的论文。我现在有一个脚注,我想像在普通文本中一样引用,但在脚注内。是否有任何软件包可以实现这一目标?当我尝试它时,就像我在普通文本中引用一样,当我呈现为 pdf 时,脚注停止成为脚注。我使用的引文风格是哈佛引文风格,所以只有这样的东西出现并且应该出现在脚注中:

其余信息在文档末尾的“参考”标题下提供。提前致谢!我感谢任何帮助...!

这是一个最小的可重现示例:

--> 这是主 .rmd 文件的代码

---
output: 
  bookdown::pdf_document2:
    toc: no
papersize: a4
geometry: margin = 1in
fontsize: 11pt
bibliography: literatur.bib
---

#TEST

This is just an example @test.\footnote{I would also like to have a citation here in this footnote!!}

\newpage
# References
<div id="refs"></div>

-->这是 literatur.bib 文件的代码

@online{test,
  author = {PACER},
  title = {Service Center},
  url = {https://pcl.uscourts.gov},
  urldate = {2021-09-10}
}

希望对您有所帮助?!

如果脚注使用markdown语法,也可以通过markdown语法插入引文:

---
output: 
  bookdown::pdf_document2:
    toc: no
papersize: a4
geometry: margin = 1in
fontsize: 11pt
bibliography: literatur.bib
---

#TEST

This is just an example @test.^[I would also like to have a citation here in this footnote!! See [@test]]

\newpage
# References
<div id="refs"></div>