代理加盟
服务条款
隐私政策
行业新闻
在Linux的世界里,有几个不同的方式供你选择来做演讲。比如带有大量多媒体展示、视觉冲击效果极佳的Impress.js,专为LaTex用户提供的Beamer,等等。而如果你苦于寻找一种简单的方式来创建并且展示文本演示稿,mdp 就能帮你实现。
mdp是Linux下一款基于ncurses的命令行演示工具。我喜欢mdp在于它对markdown的支持,使得我很容易以熟悉的markdown格式来创建幻灯片。自然,它还可以很轻松地用HTML格式来发布幻灯片。另一个好处是它支持UTF-8字符编码,这让非英语字符(如希腊或西里尔字母)的展示也变得很方便。
mdp的依赖需求很少(如 ncursesw),这使得安装非常简单。
$ sudo apt-get install git gcc make libncursesw5-dev $ git clone https://github.com/visit1985/mdp.git $ cd mdp $ make $ sudo make install
$ sudo yum install git gcc make ncurses-devel $ git clone https://github.com/visit1985/mdp.git $ cd mdp $ make $ sudo make install
Arch Linux可以通过AUR轻松安装mdp。
安装mdp完毕,你可以使用你喜欢的文本编辑器来轻松创建一个演示稿。如果你熟悉markdown的话,很快就可以驾驭mdp。而对于那些不熟悉markdown的人来说,学习mdp最好的方式就是从一个实例着手。
这里有一份6页的演示稿样本可供参考。
%title: Sample Presentation made with mdp (Xmodulo.com) %author: Dan Nanni %date: 2015-01-28 -> This is a slide title <- ========= -> mdp is a command-line based presentation tool with markdown support. <- *_Features_* * Multi-level headers * Code block formatting * Nested quotes * Nested list * Text highlight and underline * Citation * UTF-8 special characters ------------------------------------------------- -> # Example of nested list <- This is an example of multi-level headers and a nested list. # first-level title second-level ------------ - *item 1* - sub-item 1 - sub-sub-item 1 - sub-sub-item 2 - sub-sub-item 3 - sub-item 2 ------------------------------------------------- -> # Example of code block formatting <- This example shows how to format a code snippet. 1 /* Hello World program */ 2 3 #include <stdio.h> 4 5 int main() 6 { 7 printf("Hello World"); 8 return 0; 9 } This example shows inline code: `sudo reboot` ------------------------------------------------- -> # Example of nested quotes <- This is an example of nested quotes. # three-level nested quotes > This is the first-level quote. >> This is the second-level quote >> and continues. >>> *This is the third-level quote, and so on.* ------------------------------------------------- -> # Example of citations <- This example shows how to place a citation inside a presentation. This tutorial is published at [Xmodulo](http://xmodulo.com) You are welcome to connect with me at [LinkedIn](http://www.linkedin.com/in/xmodulo) Pretty cool, huh? ------------------------------------------------- -> # Example of UTF-8 special characters <- This example shows UTF-8 special characters. ae = ä, oe = ö, ue = ü, ss = ß alpha = ?, beta = ?, upsilon = ?, phi = ? Omega = ?, Delta = ?, Sigma = ? ??????????? ?rectangle? ???????????
当你把以上代码保存为slide.md的文本文件后,你可以运行以下命令来展示演示稿:
$ mdp slide.md
你可以通过按键 回车/空格/下翻页/向下光标键 (下一张幻灯)、回退/上翻页/向上光标键 (上一张幻灯)、Home (幻灯首页)、 End (幻灯末页)或者 数字N (第N页幻灯)来操作你的演示稿。
演示稿的标题将在每页幻灯的顶部展示,而你的名字和页码则会出现在幻灯的底部。
这是嵌套列表和多层次标题的实例效果。
这是代码片段和内联代码的实例效果。
这是嵌套引用的实例效果。
这是放置引文的实例效果。
这是UTF-8编码特殊字符支持的实例效果。