diff options
| author | Nicolas Goaziou <n.goaziou@gmail.com> | 2012-11-22 21:21:14 (GMT) |
|---|---|---|
| committer | Nicolas Goaziou <n.goaziou@gmail.com> | 2012-11-22 21:24:10 (GMT) |
| commit | 785e470c6c4415602d7b21adaeaf32fd64c59db7 (patch) | |
| tree | 35211588644ddeb0104096dff9598d3b19b9d933 | |
| parent | eb1ef7267bfee8662cf71bee79ad92a0d4c2a594 (diff) | |
| download | org-mode-785e470c6c4415602d7b21adaeaf32fd64c59db7.zip org-mode-785e470c6c4415602d7b21adaeaf32fd64c59db7.tar.gz | |
org-e-latex: Fix bug with inline images
* contrib/lisp/org-e-latex.el (org-e-latex--inline-image): Use
appropriate string.
This bug was introduced by 984ef56e651fe218067de30293a001a8a1188932.
| -rw-r--r-- | contrib/lisp/org-e-latex.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/lisp/org-e-latex.el b/contrib/lisp/org-e-latex.el index 9fa5f30..b7b2903 100644 --- a/contrib/lisp/org-e-latex.el +++ b/contrib/lisp/org-e-latex.el @@ -1766,7 +1766,7 @@ used as a communication channel." \\centering \\includegraphics%s{%s} %s\\end{figure}" placement options path caption)) - (t (format "\\includegraphics[%s]{%s}" attr path))))) + (t (format "\\includegraphics%s{%s}" options path))))) (defun org-e-latex-link (link desc info) "Transcode a LINK object from Org to LaTeX. |
