ox-latex: Remove specific default image width for floats

* lisp/ox-latex.el (org-latex--inline-image): Remove specific default
  image width for floats.  If no width nor height is provided, it
  should default to `org-latex-image-default-width' value.
This commit is contained in:
Nicolas Goaziou 2013-04-10 22:03:32 +02:00
parent d6e1dd8ec5
commit a9da959ae6
1 changed files with 0 additions and 1 deletions

View File

@ -1814,7 +1814,6 @@ used as a communication channel."
;; ATTR_LATEX line, and also via default variables.
(width (cond ((plist-get attr :width))
((plist-get attr :height) "")
((eq float 'figure) "0.7\\textwidth")
((eq float 'wrap) "0.48\\textwidth")
(t org-latex-image-default-width)))
(height (cond ((plist-get attr :height))