From 2616fbe71bfc31b5c9eb2a2b4eb553a994aa0acf Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Tue, 4 Aug 2020 21:18:02 -0400 Subject: [PATCH] Add amsart for exporting --- global.org | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/global.org b/global.org index 2fb0147..ad60d0a 100644 --- a/global.org +++ b/global.org @@ -814,6 +814,16 @@ ("r" "Reply to" entry (file+headline "~/org/master.org" "E-mails") "* DONE mailto:%?"))) #+END_SRC +*** LaTeX export +#+BEGIN_SRC emacs-lisp + (add-to-list 'org-latex-classes + '("amsart" "\\documentclass[11pt]{amsart}" + ("\\section{%s}" . "\\section*{%s}") + ("\\subsection{%s}" . "\\subsection*{%s}") + ("\\subsubsection{%s}" . "\\subsubsection*{%s}") + ("\\paragraph{%s}" . "\\paragraph*{%s}") + ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) +#+END_SRC *** Source blocks Add template for a source block in emacs-lisp. This is useful for writing the emacs init file in literate form