Android with root Git for version control Lircd with Raspberry Pi for IR receiver and sender Tips for Windows Depolying your own password management tool -- KeeWeb Depoly your flask app into Heroku Fix shit IE code manually ISBN to Book Category by Scraping DangDang A Generic Makefile for C/C++ Program Configure Raspberry pi Remove watermark with PyPDF2 tips for docker Anaconda+TensorFlow+CUDA Snippets Configure Remote Mathematica Kernel Build your own ngrok server Access Array SSL VPN 使用Rstudio制作html5幻灯片 tips for Mac OS X system Tips for ipython notebook 配置Ubuntu server + Openbox (Obuntu) tips for Vimperator tips for Vim 安装CUDA My First Jekyll Blog rsync常见选项 在Linux中读取Ipod touch的文件 tip for texmacs 在VPS上建站的一些tip Gnuplot绘图札记 Samba系统和autofs自动挂载 Linux中alsamixer声卡无法录音 搭建自己的RSS订阅器——Tiny Tiny RSS Grub2引导安装Ubuntu awk tips 将Ubuntu系统装入U盘 The Great Rtorrent 编译GCC 再这样剁手!!!该死的libgd 使用ulimit进行资源限制 使用SSH代理上IPV6 使用RCurl抓取网页数据 修复Ubuntu Grub记 openbox中的文件关联 在Ubuntu 12.04下编译qtiplot 处理BCM4312网卡驱动纪实 配置我的Ubuntu Server记 Cygwin杂记 Linux 使普通用户具有以超级权限执行脚本 让firefox自定义地处理文件类型 WordPress优秀主题及插件 在phpcloud上搭建wordpress UBUNTU下用pptpd做VPN server ubuntu升级内核过后的一些问题 安装telnet服务 kubuntu札记 64位kubuntu札记 统计软件R Virtualbox stardict星际译王 Ubuntu重装windows系统后的grub引导修复 SSH服务及花生壳域名解析 采用cbp2make工具由code::blocks工程创建makefile文件 UBUNTU 札记

使用Rstudio制作html5幻灯片

2016年01月11日

Rstudio中的R markdown提供了一个presentation模式,此模式没有实时预览功能,保存后必须编译才能在额外的浏览器窗口观看到显示效果。我这里介绍Rstudio直接提供的幻灯片模式,有变更后保存即可预览,更可在预览和源代码之间跳转。

下面是一份模版,注意可能目前不能支持中文字符,应该可以通过后期更改生成的html实现。

This is a R presentation template
========================================================
author: name
date: Jan 15th, 2016
autosize: true
transition: rotate
transition-speed: slow
font-import: http://fonts.googleapis.com/css?family=Risque
font-family: 'Risque'

<!---
各页之间通过`======`隔离,`======`之前为页标题
第一页默认为封面,可进行一些全局设置,如是否在预览中自适应大小autosize,过场动画transition(none/linear/rotate/fade/zoom/concave)及速度,字体等。
-->

First Slide
========================================================
type: section
id: slide1
width: 1440
height: 900

<!---
通过type设置各页类型,如section/sub-section/prompt/alert,具有不同样式。
通过id设置标签并在其他页通过标准markdown网页链接模式设置跳转。
更可设置页面宽高
-->
For more details on authoring R presentations please visit <https://support.rstudio.com/hc/en-us/articles/200486468>.

Second Slide
========================================================
incremental: true

<!---
通过incremental设置是否逐条显示此页中的内容
-->

0. Bullet 1
0. Bullet 2
0. Bullet 3

Third Slide
========================================================
source: example.R
source: example.R 30
source: example.R /here/
title: false
left: 70%

First column
***
Second column
<!---
通过source设置在浏览此页时打开一个文件并跳转到行或正则表达式处。
关闭标题。
双栏显示并设置左栏宽度比例。
-->

[Go to slide 1](#/slide1)

观察生成的html代码发现它实际上使用的是reveal.js库,可进一步更改css文件实现深度定制。