emacs ditaa 配置
ditaa 工具能夠幫我們把ASCII圖轉成漂亮的圖檔,結合emacs in org-mode,用artist-mode,可以友善畫出 漂亮的流程圖。官方首頁:ditaa –DIagrams Through Ascii Art
1 下載下傳安裝
http://ditaa.sourceforge.net/#download
unzip ditaa_xx.zip cp ditaa_xx.jar ~/.emacs.d/plugins/ditaa
2 emacs 配置
參考:http://doc.norang.ca/org-mode.html#sec-13-1
(setq org-ditaa-jar-path “~/.emacs.d/plugins/ditaa/ditaa0_9.jar”) ;(setq org-plantuml-jar-path “~/java/plantuml.jar”)
(add-hook ‘org-babel-after-execute-hook ‘org-display-inline-images ‘append)
(org-babel-do-load-languages (quote org-babel-load-languages) (quote ((emacs-lisp . t) (dot . t) (ditaa . t) (R . t) (python . t) (ruby . t) (gnuplot . t) (clojure . t) (sh . t) (ledger . t) (org . t) (plantuml . t) (latex . t))))
; Do not prompt to confirm evaluation ; ; This may be dangerous - make sure you understand the consequences ; ; of setting this – see the docstring for details (setq org-confirm-babel-evaluate nil)
3 didtaa 使用
- artist-mode :: 具體使用請檢視 http://www.cinsk.org/emacs/emacs-artist.html
- ditaa org-mode file :: 相關快捷鍵 C-c c 編譯 C-c C-x C-v 可以檢視圖檔
由于中文支援不太好,要配置ditaa編碼,建議使用UTF-8,org-mode
#+LANGUAGE
設定成:
#+LANGUAGE: zh_cn
- ———–+
- —-+——+
cBLU |
你好 |
—— |
cPNK |
世界 |
- 效果 ::
- ———–+
- —-+——+
cBLU |
你好 |
—— |
cPNK |
世界 |
- Tips :: 結合org-mode TeX 或 Tex beamer 可以寫各種漂亮的slide和文檔了