From d9cc075cb966998f5096e42b4b4da57020fcd4cf Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 3 Dec 2010 21:02:33 +0100 Subject: [PATCH] LaTeX export: Swap \begin{document} and the title/author definitions * lisp/org-latex.el (org-export-latex-make-header): Swap \begin{document} and the title/author definitions. Patch by Sebastian Hofer. TINYCHANGE --- lisp/org-latex.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-latex.el b/lisp/org-latex.el index 91bf380e6..e58c11d3f 100644 --- a/lisp/org-latex.el +++ b/lisp/org-latex.el @@ -1281,6 +1281,8 @@ OPT-PLIST is the options plist for current buffer." (org-export-apply-macros-in-string org-export-latex-append-header) ;; define alert if not yet defined "\n\\providecommand{\\alert}[1]{\\textbf{#1}}" + ;; beginning of the document + "\n\\begin{document}\n\n" ;; insert the title (format "\n\n\\title{%s}\n" @@ -1297,8 +1299,6 @@ OPT-PLIST is the options plist for current buffer." (format-time-string (or (plist-get opt-plist :date) org-export-latex-date-format))) - ;; beginning of the document - "\n\\begin{document}\n\n" ;; insert the title command (when (string-match "\\S-" title) (if (string-match "%s" org-export-latex-title-command)