summaryrefslogtreecommitdiff
path: root/emacs-config.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-config.org')
-rw-r--r--emacs-config.org10
1 files changed, 9 insertions, 1 deletions
diff --git a/emacs-config.org b/emacs-config.org
index 446a74a..07aea28 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -611,12 +611,20 @@ Redisplay images when executing an org block.
*** Org Export
:PROPERTIES:
-:header-args:elisp: :tangle no :noweb-ref org-export-settings
+:header-args:elisp: :tangle no :noweb-ref org-export-settings :results none
:END:
Use SVG LaTeX previews.
#+begin_src elisp
(setq-default org-preview-latex-default-process 'dvisvgm)
+ (setq-default org-format-latex-options
+ '(:foreground default
+ :background "Transparent"
+ :scale 0.5
+ :html-foreground "Black"
+ :html-background "Transparent"
+ :html-scale 1
+ :matchers ("begin" "$1" "$" "$$" "\\(" "\\[")))
(with-eval-after-load 'ox-html
(setq-default org-html-with-latex 'dvisvgm))
#+end_src