eschulte / epresent

Presentations in Emacs -- based on Org-mode
183 stars 50 forks source link

Make latex formula size configurable. #20

Closed tmalsburg closed 9 years ago

tmalsburg commented 9 years ago

And avoid the use of a temp variable for the original settings in org-format-latex-options.

(At some point it might make sense to convert some of the defvars to defcustoms.)

eschulte commented 9 years ago

When I apply this patch my latex formula are tiny. Could you change this patch to preserve the previous formula size by default?

Thanks,

tmalsburg commented 9 years ago

The patch is in fact written to preserve the previous size. I think the reason why you are seeing tiny formulae is that I recycled the variable epresent-format-latex-scale which may in your running instance of Emacs still store an old value. Just restart Emacs (joke!) or (setq epresent-format-latex-scale 4) and the formulae should appear in the expected size.

eschulte commented 9 years ago

Ah, right you are. Merged. Thanks!