我用 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