这是一种解决方法。它可能不是防弹的,需要进一步改进:
让我们从一个完全可重现的例子开始:
---
title: "Footnotes"
author: "Martin Schmelzer"
date: "9 3 2017"
output: ioslides_presentation
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
<style>
div.footnotes {
position: absolute;
bottom: 0;
margin-bottom: 10px;
width: 80%;
font-size: 0.6em;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('slide:not(.backdrop):not(.title-slide)').append('<div class=\"footnotes\">');
$('footnote').each(function(index) {
var text = $(this).html();
var fnNum = (index+1).toString().sup();
$(this).html(text + fnNum);
var footnote = fnNum + ': ' + $(this).attr('content') + '<br/>';
var oldContent = $(this).parents('slide').children('div.footnotes').html();
var newContent = oldContent + footnote;
$(this).parents('slide').children('div.footnotes').html(newContent);
});
});
</script>
## Try out some footnotes
Lets assume I have a footnote <footnote content="The first awesoem footnote!">here</footnote>. And here we are going to have another one: <footnote content="This is my second footnote!">#secFN</footnote>
## The Second Topic
See auto numbering for <footnote content = "The counter is not set back and continues on the next slide.">footnotes</footnote>
现在让我们看看我在这里做了什么:
1.我们在每张幻灯片的底部为脚注容器添加了一些样式。
2.我们包含 jQuery 库。
3.接下来是主脚本:
当文档完成加载 ( document.ready()
) 时,我们选择除标题幻灯片和背景幻灯片之外的所有幻灯片。我们为它们中的每一个添加一个脚注容器 ( <div class="footnotes"></div>
) 作为最后一个子元素。
之后,我们只需浏览文档并搜索可以通过以下方式创建的脚注:
<footnote content="What should be written at the bottom?">Text</footnote>
我们选择所有脚注并对每个脚注应用一个函数,读取其中的内容footnote
并将其添加到容器中。脚注自动编号,上标添加sup()
.
结果如下所示: