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 984ef56e65
.
This commit is contained in:
parent
eb1ef7267b
commit
785e470c6c
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue