Add latex module

This commit is contained in:
Marcus Kammer 2020-10-29 15:40:29 +01:00
parent c22c14f3a4
commit b0d40dc01b
2 changed files with 10 additions and 0 deletions

9
bundle/bundle--latex.el Normal file
View file

@ -0,0 +1,9 @@
(require '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}")))

View file

@ -5,6 +5,7 @@
(load "bundle--keys")
(load "bundle--coding")
(load "bundle--holidays")
(load "bundle--latex")
;; (load-theme 'nord t)
(require 'color-theme-sanityinc-tomorrow)
(defalias 'yes-or-no-p 'y-or-n-p)