Reputation: 515
I am pretty new to Rmarkdown presentations. I liked ioslides but it was quite a fixed theme, and Xarignan seemed more easily configurable (the visual aspect).
With ioslides, you get an html file with ALL the content (css, images, etc.). With Xaringan, I cannot get the images to work (seems like I need them to be in a folder in the same folder as the html file). Also, I am not sure if the html files uses something from the internet.
Upvotes: 4
Views: 550
Reputation: 30184
This problem has been largely resolved. For now, you may try the development version of xaringan:
remotes::install_github('yihui/xaringan')
Images in slides should be correctly embedded now if you specify the option self_contained: true
under the output format xaringan::moon_reader
. The help page ?xaringan::moon_reader
has more information about the self-contained mode.
Upvotes: 1