Compare commits

..

1 Commits

Author SHA1 Message Date
coolneng 3475ee0691
Add tufte-handout LaTeX class and org mode snippet 2021-05-05 15:20:53 +02:00
1 changed files with 8 additions and 6 deletions

View File

@ -36,9 +36,11 @@
;; 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}")))
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))