Rmarkdown ioslides allowframebreaks alternative

僤鯓⒐⒋嵵緔 提交于 2019-11-30 17:37:40
Tavrock

As it turns out, this question is a bit of a duplicate. One answer is here:

References page truncated in RMarkdown ioslides presentation

To quote the answer:

This isn't exactly what you're asking for, but it might be the best you can do. Insert the following inline CSS at the end of your document (i.e. just before where the references will be inserted), and instead of truncating them, it will add a scroll bar (the first part) and suppress the page number (the second part).

<style>
slides > slide { overflow: scroll; }
slides > slide:not(.nobackground):after {
content: '';
}
</style>

You won't be able to see all references at once, but at least you can scroll through them. (You can add this after the header on any long slide for the same effect.)

Original answer posted by user2554330

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!