Skip to content

Instantly share code, notes, and snippets.

@peterhoeg
Created September 23, 2016 07:35
Show Gist options
  • Save peterhoeg/bff2df433de6a72eba8ad56d8649b88d to your computer and use it in GitHub Desktop.
Save peterhoeg/bff2df433de6a72eba8ad56d8649b88d to your computer and use it in GitHub Desktop.
Setting defaults for latex export from org
(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