[O] What happens to org-export-with-LaTeX-fragments

2013-05-14 Thread Leo Liu
Hi there,

I am upgrading to org 8 and cleaning up my init. There are two variables
that aren't defined any more: org-export-with-LaTeX-fragments and
org-highlight-latex-fragments-and-specials.

Could someone tell me what are the replacement for them?

Thanks,
Leo




Re: [O] What happens to org-export-with-LaTeX-fragments

2013-05-14 Thread Rasmus
Hi Leo,

 I am upgrading to org 8 and cleaning up my init. There are two variables
 that aren't defined any more: org-export-with-LaTeX-fragments and

I'm looking at an old exporter and assume that you are interested in
MathJax and HTML. . .?

In any case, the source suggests that org-element only checks
:with-latex, which can be set 'globally' with org-export-with-latex (I
think).  Also, it seems there might be a bug in the docstring as the
function below suggests it also support value dvipng and mathjax.  But
I could be wrong. 

Anyway, check out this function:

#+BEGIN_SRC emacs-lisp
 Latex Fragment  [snip from ox-html.el]

(defun org-html-latex-fragment (latex-fragment contents info)
  Transcode a LATEX-FRAGMENT object from Org to HTML.
CONTENTS is nil.  INFO is a plist holding contextual information.
  (let ((latex-frag (org-element-property :value latex-fragment))
(processing-type (plist-get info :with-latex)))
(case processing-type
  ((t mathjax)
   (org-html-format-latex latex-frag 'mathjax))
  (dvipng
   (let* ((formula-link (org-html-format-latex
 latex-frag processing-type)))
 (when (and formula-link
(string-match file:\\([^]]*\\) formula-link))
   (org-html-format-inline-image
(match-string 1 formula-link) info
  (t latex-frag
#+END_SRC

 org-highlight-latex-fragments-and-specials.

This is improved through org-highlight-latex-and-related.  Check it
out. 

Hope it helps,
Rasmus

-- 
. . . Stallman was indeed the tallest possible mountain and by
standing on his shoulders you could see forever. . .




Re: [O] What happens to org-export-with-LaTeX-fragments

2013-05-14 Thread Leo Liu
On 2013-05-14 21:02 +0800, Rasmus wrote:
 I'm looking at an old exporter and assume that you are interested in
 MathJax and HTML. . .?

Thank you, Rasmus.

Leo