Compare commits

..

1 Commits

Author SHA1 Message Date
coolneng 49729c3ccf
Add tufte-handout LaTeX class and org mode snippet 2021-05-05 15:26:22 +02:00
1 changed files with 6 additions and 7 deletions

13
+org.el
View File

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