オフラインでもslidifyを使う

プレゼンするのが自分だったら色々注意も払えます。
ですがプレゼンするのは往々にして他人です。
そうなると極力リスクは排除していきたい。
オンラインを想定していてもオフラインでプレゼンするはめになることも多々あるでしょう。
slidifyは現在onefileという形でオフラインにも対応しようとしています。
使ってみたい方は下記でインストール。

devtools:::install_github('ramnathv/slidify@onefile')

下記のindex.Rmdを色々と書き換えて試してみてください。
https://github.com/slidify/onefile/blob/gh-pages/index.Rmd
たくさん警告が出ますが開発中ということで。

DataURL

なおonefileにするにあたってDataURLという仕組みを利用しています。
http://dataurl.net/

Data URLs are a Uniform Resource Identifier scheme that allow you to include data items inline in a web page as if they were being referenced as external resources. Data URLs are a form of Uniform Resource Locators, although they do not in fact remotely locate anything.Instead, the resource data is contained within the URL string itself as a base64-encoded string. This saves the browser from having to make additional HTTP requests for the external resources, and can thus increase page loading speed.

とのことです。
依存関係を解決していくにあたっての作者の説明は下記に。
https://github.com/slidify/onefile/issues/1

enjoy!