From 4ed81e76f7cb4910df7c10a5e2d6017f7d6c7017 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:37 +0000 Subject: [PATCH] Tweak some org-mode export settings --- config.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/config.org b/config.org index 9668aeb..b6b727d 100644 --- a/config.org +++ b/config.org @@ -309,6 +309,12 @@ (setq org-export-with-toc nil) #+end_src + Also don't want section numbering for similar reasons: + + #+begin_src emacs-lisp + (setq org-export-with-section-numbers nil) + #+end_src + *** HTML =htmlize= is needed for decent HTML exporting, but there is no need for all that stuff at the bottom. @@ -318,6 +324,19 @@ (setq org-html-postamble nil) #+end_src + I like margins and line height: + + #+begin_src emacs-lisp + (setq org-html-style + "") + #+end_src + *** LaTeX Use =minted= (LaTeX package) to do syntax highlighting in code blocks: