summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs-config.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs-config.org b/emacs-config.org
index d32f102..7697a69 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -568,14 +568,14 @@ Redisplay images when executing an org block.
Use SVG LaTeX previews.
#+begin_src elisp
(setq-default org-preview-latex-default-process 'dvisvgm)
- (with-eval-after-load ox-html
+ (with-eval-after-load 'ox-html
(setq-default org-html-with-latex 'dvisvgm))
#+end_src
Set [[https://ctan.org/pkg/hyperref][hyperref]] LaTeX settings.
#+begin_src elisp
- (with-eval-after-load ox-latex
+ (with-eval-after-load 'ox-latex
(setq-default org-latex-hyperref-template
"\\hypersetup{
pdfauthor={%a},
@@ -596,7 +596,7 @@ Set [[https://ctan.org/pkg/hyperref][hyperref]] LaTeX settings.
Add =doc= LaTeX class.
#+begin_src elisp
- (with-eval-after-load ox-latex
+ (with-eval-after-load 'ox-latex
(cl-pushnew
'("doc"
"
@@ -843,7 +843,7 @@ Command to view clock report.
:max-gap 5
:inherit 'warning
:default-face ((:background 'unspecified)
- (:family "monospace")))))))
+ (:family "monospace"))))))
org-agenda-custom-commands)
#+end_src