I prepare a ioslides presentation in RMarkdown via RStudio. As the presentation contains a lot of references they are truncated:
With
{.allowframebraks}
there seems to be a quick solution for beamer
presentations as this answer shows.
Is there one for ioslides, too?
-
I cannot comment due to my tiny rep. I'm finding this accepted answer works but is not compatible with 'link-citations: yes', as clicking in-text citation links result in the presentation loading in a new window/tab at the top page. – Ben Jacobson Jul 29 '18 at 18:38
1 Answers
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.)
Edited to add:
To suppress the logo, this should work:
<style>
slides > slide:not(.nobackground):before {
background: none;
}
</style>
Generally to figure things like this out, use Firefox (or another browser?), point at the thing of interest, right click and choose Inspect Element. That will tell you where it came from, and you might be able to guess how to suppress it.

- 37,248
- 4
- 43
- 90
-
that ist great! Thank you. Do you futhermore have an idea how to supress the Logo for this page? – sammerk Jul 11 '16 at 14:13
-
Thank's again for the edited hint. Meanwhile I figured some issues out using the Firefox "Inspect Element" function. What didn't get to work is a workaround to apply the suppression of the logo for only one slide using the #id selectro in css. Any ideas? – sammerk Jul 12 '16 at 11:19
-
That's going beyond my "expertise". You should probably post a new question and someone else might get it. – user2554330 Jul 12 '16 at 16:58