Sphinx cheat sheet

Here is a quick and dirty cheat sheet for some common stuff you want to do in sphinx and ReST. 文本格式化 名称 代码 示例 斜体 *斜体* 斜体 粗休 **粗体** 粗体 原文 `原文` 原文 源代码 末尾使用 :: 符号,则下面的内容就显示为源代码,源代码需要缩进,例如: You can represent code blocks fairly easily:: import numpy as np x = np.random.rand(12) 以上代码显示效果如下: You can represent code blocks fairly easily: import numpy as np x = np.random.rand(12) 也可以直接从文件引入代码。例如从exts/chinese_search.py 引入代码可以使用如下命令: .. literalinclude:: exts/chinese_search....

September 10, 2013 · 4 min · Me

使用 Sphinx 生成 PDF 文件

如何通过使用 Sphinx 把 reStructuredText (或者 markdown )生成 PDF 文件。

January 27, 2013 · 5 min · Dormouse Young

结合 Sphinx 与 xeTex 生成PDF

安装xeTex 方法一: 没有测试过。 apt-get install texlive-full 方法二: 去 tex 的 老家 下载 install-tl-unx.tar.gz 。 解压缩后,运行: sudo ./install-tl --gui=wizard 如果没有安装 wget ,则运行: sudo yum install wget 安装输出大致如下: 输入 “In” 开始安装,一共有2599个项目...... Actions: <I> start installation to hard disk <H> help <Q> quit Enter command: i Installing to: /usr/local/texlive/2012 Installing [0001/2599, time/total: ??:??/??:??]: 12many [376k] Installing [0002/2599, time/total: 00:09/10:05:07]: 2up [66k] Installing [0003/2599, time/total: 00:10/09:32:46]: Asana-Math [458k] Installing [0004/2599, time/total: 00:12/05:36:55]: ESIEEcv [137k] Installing [0005/2599, time/total: 00:15/06:05:39]: FAQ-en [5765k] ....

January 27, 2013 · 2 min · Me