浏览代码

ox-latex: Fix output for Tikz or PGF images

* lisp/ox-latex.el (org-latex--inline-image): Fix output for Tikz or
PGF images.
Nicolas Goaziou 5 年之前
父节点
当前提交
eab7c4e581
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lisp/ox-latex.el

+ 2 - 1
lisp/ox-latex.el

@@ -2425,7 +2425,8 @@ used as a communication channel."
 		       (format "\\resizebox{%s}{%s}{%s}"
 			       (if (org-string-nw-p width) width "!")
 			       (if (org-string-nw-p height) height "!")
-			       image-code)))))
+			       image-code))
+		      (t image-code))))
       ;; For other images:
       ;; - add scale, or width and height to options.
       ;; - include the image with \includegraphics.