Add latex module
This commit is contained in:
parent
c22c14f3a4
commit
b0d40dc01b
2 changed files with 10 additions and 0 deletions
9
bundle/bundle--latex.el
Normal file
9
bundle/bundle--latex.el
Normal 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}")))
|
1
init.el
1
init.el
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue