最近学习了一下 TeX 和 metapost
争取以后写文档都用这两个工具写, 写完后用 tex2page 转换成 html 文档.
tex2page 主页在这里.
安装 tex2page 后还得安装 mzscheme 就可以直接用了.
先记下一些笔记先
1. 导入 tex 宏集
得到 .sty, .tex 后, 加入到 tex 目录树中
比如 /usr/share/texmf/tex/latex/
运行 texhash 刷新系统文件名数据库
2. tex2page 生成图片
一开始使用 tex2page 时不能生成 png 图片,
安装 ghostscript(gs-eps) 及 ghostview 后能够生成 png 图片了.
3. 使用 matepost 作图
在 debian 中使用 matepost 不仅需要安装
tetex-base, tetex-bin 还需要 tetex-extra
否则出现如下错误:
fmtutil: format `mpost' not available.
I can't find the mem file `mpost.mem'!
4. 汉化 tex
还没有搞定, 不过转成 html 没有问题.
5. 汉化 matepost
还没有搞定.
6. 用 mpost 编译 *.mp 时, 生成的 eps 文件用 ghostview 不能看
但是用 mptopdf 编译 *.mp 就可以了. 奇怪.
7. 以后写笔记的步骤可以这样了
a. 写 tex 文件
b. 写 mp 文件(作图)
c. mpost mp 得到 eps 文件
d. 将 eps 文件加入到 tex 文档中
e. tex2page tex 文档得到 html 文档