Skip to content
Mingde (Matthew) Zeng edited this page Jan 20, 2021 · 3 revisions

English | 简体中文

加载 eaf-org 来启用:

(require 'eaf-org)

支持 org-store-link

当前支持如下应用:

  • web browser 链接支持
  • pdf-viewer 跳转到记录的标记页面
  • js-video-player 跳转到记录的视频时间戳
  • 理论上支持所有EAF应用(只要应用有 eaf--buffer-url 参数值)

将Org文档用LaTeX转成PDF并通过EAF浏览

请使用 M-x eaf-org-export-to-pdf-and-open

用EAF PDF-Viewer打开Org Mode的PDF链接

(defun eaf-org-open-file (file &optional link)
  "An wrapper function on `eaf-open'."
  (eaf-open file))

;; use `emacs-application-framework' to open PDF file: link
(add-to-list 'org-file-apps '("\\.pdf\\'" . eaf-org-open-file))