如何在org-mode中为不同的导出使用不同的图像格式?

时间:2012-11-28 18:20:27

标签: image-processing org-mode

我想在我的组织模式文档中包含内联图像,但我真的需要一个用于HTML导出的png和一个用于LaTeX导出的pdf,以使其看起来不错。有没有办法表达这个?

1 个答案:

答案 0 :(得分:4)

我在irc得到了一个对我有用的答案。

#+ATTR_LaTeX: width=0.38\textwidth wrap placement={r}{0.4\textwidth}
#+ATTR_HTML: alt="old index mech" title="Old index mech" align="right"
#+begin_src emacs-lisp :exports results :results value raw
(case (and (boundp 'backend) backend)
  (nil "")
  (latex "[[file:img/indexing-old.pdf]]")
  (html "[[file:img/indexing-old.png]]"))
#+end_src

这会在导出时根据后端选择链接,同时仍然提供HTML和LaTeX属性。看起来非常简单。