我用 Sphinx 建了一个 reStructuredText 文件的专案
$ sphinx-quickstart mybook
然后这个专案的内容如下
因为希望把文件都放在资料夹 content/ 底下 所以另外建了一个资料夹
$ cd mybook
$ mkdir content
$ ls -F
conf.py content/ index.rst make.bat Makefile
开始用 emacs 编辑文件
$ emacs index.rst
在 emacs 里编辑另一个档案
C-x C-f content/another_document.rst
然后,编辑完后想要生成 html 档
M-x compile <RET> make html <RET>
但是 emacs 似乎会将资料夹的位置设定在 another_document.rst 所在的位置
所以 make 指令会读不到 Makefile
当然把所有的档案都放到和 Makefile 同一层资料夹也可以
但是这样觉得资料夹里一堆档案 感觉比较乱
想请问一下比较顺手的方法?
另外 有没有将以下这行写成比较方便的指令 像 bash 里的 alias 一样
M-x compile <RET> make html; firefox