gpt4 book ai didi

r - 仅在使用 R Markdown 在投影仪中暂停后才显示脚注

转载 作者:行者123 更新时间:2023-12-03 09:33:01 26 4
gpt4 key购买 nike

我正在制作 Beamer 演示文稿,并且在单张幻灯片的内容之间使用暂停。我不知道如何在暂停后才显示脚注。
下面是一个例子:

---
title: ""
author: ""
date: ""
output:
beamer_presentation
bibliography: test.bib
---

* one argument

\pause

* another argument^[This citation should appear only with point 2: @fargues2006]

# references
test.bib :
@article{fargues2006,
title = {The {{Demographic Benefit}} of {{International Migration}}: {{Hypothesis}} and {{Application}} to {{Middle Eastern}} and {{North African Contexts}}},
author = {Fargues, Philippe},
date = {2006},
journaltitle = {World Bank Policy Research Paper},
url = {http://documents.worldbank.org/curated/en/508301468280735279/pdf/wps4050.pdf},
number = {4050}
}
在此示例中,脚注不应在仅显示第一个点时出现,而是在显示第二个点时出现。
我尝试申请 this answer from TeX StackExchange但没有成功。
我怎样才能做到这一点?
编辑:遵循@samcarter_is_at_topanswers.xyz 的回答,我确切地说,我更喜欢一种解决方案,它不需要根据幻灯片是否同时具有停顿和脚注而在文档中从 Markdown 切换到 LaTeX。但是,我可以使用 .tex文件或在 YAML 中添加 pandoc 参数(因为我认为解决方案必须是这种方式,但我可能错了)。
编辑 #2:我想在这些脚注中加入 @citationkey还问 on RStudio Community

最佳答案

您可以通过使用正确的 Latex 语法来解决该问题:

---
title: ""
author: ""
date: ""
output:
beamer_presentation
---

* one argument

\pause

* ```{=latex}
another argument\footnote<.(1)->{This should appear only with point 2}
```

enter image description here

或隐藏的脚注:
---
title: ""
author: ""
date: ""
output:
beamer_presentation:
keep_tex: true
---

## {.t}


* one argument

\pause

* ```{=latex}
another argument\only<.(1)->{\footnote{This should appear only with point 2}}
```

enter image description here

(顶部对齐是为了避免跳跃n)

关于r - 仅在使用 R Markdown 在投影仪中暂停后才显示脚注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62345074/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com