* 使用脚本直接beamer presentation
这个说来话长,因为用习惯了emacs org,平时不管是日程管理,写博客,写
latex还有beamer都是在org下面完成的。而org导出的beamer presentation是
pdf格式,用这个脚本可以直接幻灯片播放,很方便。
** shell脚本
- #!/bin/bash
- #
- #
- # author: lishuo
- # email: lishuo.os.ds@gmail.com
- # date: 2012-09-17
- #
- #
- # this script use command evince --presentation as beamer-viewer.
- # usage: scriptname /path/to/your/pdf
- #
- ############################################################
- # define variables and functions here
- ############################################################
- file=$1
- function view_beamer
- {
- evince --presentation $file
- }
- ############################################################
- # begin of main
- ############################################################
- # if no argument, exit and print the usage.
- if [ $# != 1 ];then
- echo "usage:scriptname /path/to/your/pdf "
- exit 1
- fi
- echo "begin beamer presentation! "
- # begin
- view_beamer
- exit 0
- ############################################################
- # end of presentation.sh
- ############################################################
** 使用方法
第一步,仍旧是使其具有可执行权限:
: chmod 744 presentation.sh
第二步,使用符号链接
: ln -s /path/to/your/presentation.sh view_beamer
第三步,使用
使用下面的指令,即可直接显示幻灯片。
: view_beamer yourpdf
阅读(4419) | 评论(0) | 转发(1) |