14 lines
591 B
EmacsLisp
14 lines
591 B
EmacsLisp
;;; Directory Local Variables
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
|
|
|
((org-mode . ((org-use-property-inheritance . t)
|
|
(eval . (progn
|
|
(require 'ox-latex)
|
|
(setq-local
|
|
org-latex-classes
|
|
'(("chex"
|
|
"\\documentclass{chex}"
|
|
("\\chapter{%s}" . "\\chapter*{%s}")
|
|
("\\section{%s}" . "\\section*{%s}")
|
|
("\\subsection{%s}" . "\\section*{*s}")))))))))
|