Compare commits

..

1 Commits

Author SHA1 Message Date
coolneng 38d3055a3b
Add tufte-handout LaTeX class and org mode snippet 2021-05-05 14:37:36 +02:00
1 changed files with 6 additions and 8 deletions

14
+org.el
View File

@ -36,11 +36,9 @@
;; Open file with folded headlines
(setq org-startup-folded 'content)
;; Add tufte-handout to LaTeX classes
(after! ox-latex
(add-to-list 'org-latex-classes
'("tufte-handout"
"\\documentclass{tufte-handout}"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
(add-to-list 'org-latex-classes
'("tufte-handout"
"\\documentclass{tufte-handout}"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")))