--- org-orig.el 2006-09-01 14:36:16.000000000 -0700 +++ org.el 2006-09-01 13:38:30.000000000 -0700 @@ -1985,6 +1985,12 @@ :group 'org-latex :type 'boolean) +(defcustom org-export-LaTeX-fragments-resolution 86 + "Output resolution of images created by conversion of LaTeX fragments when exporting to HTML." + :group 'org-export-translation + :group 'org-latex + :type 'integer) + (defcustom org-export-with-fixed-width t "Non-nil means, lines starting with \":\" will be in fixed width font. This can be used to have pre-formatted text, fragments of code etc. For @@ -13110,6 +13116,7 @@ (:sub-superscript . org-export-with-sub-superscripts) (:TeX-macros . org-export-with-TeX-macros) (:LaTeX-fragments . org-export-with-LaTeX-fragments) + (:LaTeX-resolution . org-export-LaTeX-fragments-resolution) (:fixed-width . org-export-with-fixed-width) (:timestamps . org-export-with-timestamps) (:tables . org-export-with-tables) @@ -15532,6 +15539,7 @@ (call-process "dvipng" nil nil nil "-E" "-fg" fg "-bg" bg "-x" scale "-y" scale "-T" "tight" + "-D" (number-to-string org-export-LaTeX-fragments-resolution) "-o" pngfile dvifile) (if (not (file-exists-p pngfile))