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 7 additions and 6 deletions

13
+org.el
View File

@ -37,9 +37,10 @@
(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}"))))