Change org-mode default LaTeX class to KOMA article

This commit is contained in:
Dimitri Lozeve 2020-09-21 14:26:05 +02:00
parent fe14fa70b1
commit de44df34f3

13
init.el
View file

@ -556,7 +556,18 @@
;; System locale to use for formatting time values. Make sure that
;; the weekdays in the time stamps of your Org mode files and in the
;; agenda appear in English.
(setq system-time-locale "C"))
(setq system-time-locale "C")
(with-eval-after-load "ox-latex"
(add-to-list 'org-latex-classes
'("koma-article" "\\documentclass{scrartcl}"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))))
(setq org-latex-default-class "koma-article"))
(use-package ox-pandoc
:ensure t)