Created
September 23, 2016 07:35
-
-
Save peterhoeg/bff2df433de6a72eba8ad56d8649b88d to your computer and use it in GitHub Desktop.
Setting defaults for latex export from org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(add-to-list | |
'org-latex-classes | |
'("stdoc" | |
"\\documentclass[11pt,a4paper]{stdoc} | |
[DEFAULT-PACKAGES] | |
[NO-PACKAGES]" | |
("\\section{%s}" . "\\section*{%s}") | |
("\\subsection{%s}" . "\\subsection*{%s}") | |
("\\subsubsection{%s}" . "\\subsubsection*{%s}") | |
("\\paragraph{%s}" . "\\paragraph*{%s}") | |
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) | |
(setq org-latex-default-class "stdoc") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment