2015年4月9日 星期四

org mode匯出slide的幾種選擇

http://www.v2ex.com/t/113949

覺得都沒有整合得很好,滿可惜的…

此文作者推薦的 ox-reveal , 似乎需要的 ox.el 版本與 elpa 提供的不同,執行時出現錯誤訊息:

or: Symbol's function definition is void: org-export-get-headline-id

解決方式就是自行加上這個函數定義到 ox.el

(defun org-export-get-headline-id (headline info)
  "Return a unique ID for HEADLINE.
INFO is a plist holding contextual information."
  (let ((numbered (org-export-numbered-headline-p headline info)))
    (concat
     (if numbered "sec-" "unnumbered-")
     (mapconcat #'number-to-string
               (if numbered
                   (org-export-get-headline-number headline info)
                 (cdr (assq headline (plist-get info :unnumbered-headline-id)))) "-"))))

20150625更新:

Emacs: org-mode的中文beamer幻灯片模板

20200519更新:

emacs-reveal 可以正常工作

沒有留言:

張貼留言