emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] ox-odt.el: Fix LaTeX formulae in opendocument exports
@ 2016-11-29  3:43 Lixin Chin
  2016-11-29  8:30 ` Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Lixin Chin @ 2016-11-29  3:43 UTC (permalink / raw)
  To: emacs-orgmode

Hi everyone,

Fixing a bug in org-mode 9.0 where setting a LaTeX -> MathML converter
(`org-latex-to-mathml-convert-command') and exporting an org-mode
document containing LaTeX equations to opendocument fails.

Thank you,
Lixin Chin

* lisp/ox-odt.el (org-odt--translate-latex-fragments): Apply signature
   change for `org-format-latex'.

Commit a24f339f58a5a97a813514b8768faf9131c83dd0 changed the signature
for `org-format-latex' (lisp/org.el) to add `beg' and `end' optional
parameters.  This led to an error in ox-odt.el when exporting an
odt document containing LaTeX formulae.
---
  lisp/ox-odt.el | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index 05d86bf..e240dd7 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -3741,7 +3741,8 @@ contextual information."
           (org-link
            (let ((link (with-temp-buffer
                  (insert latex-frag)
-                (org-format-latex cache-subdir cache-dir
+                (org-format-latex cache-subdir nil nil
+                          cache-dir
                            nil display-msg
                            nil processing-type)
                  (buffer-substring-no-properties
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ox-odt.el: Fix LaTeX formulae in opendocument exports
  2016-11-29  3:43 [PATCH] ox-odt.el: Fix LaTeX formulae in opendocument exports Lixin Chin
@ 2016-11-29  8:30 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2016-11-29  8:30 UTC (permalink / raw)
  To: Lixin Chin; +Cc: emacs-orgmode

Hello,

Lixin Chin <lixinchin@gmail.com> writes:

> Fixing a bug in org-mode 9.0 where setting a LaTeX -> MathML converter
> (`org-latex-to-mathml-convert-command') and exporting an org-mode
> document containing LaTeX equations to opendocument fails.

Applied. Thank you.

Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-11-29  8:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-29  3:43 [PATCH] ox-odt.el: Fix LaTeX formulae in opendocument exports Lixin Chin
2016-11-29  8:30 ` Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).