From: Steen Manniche Date: Thu, 1 Nov 2012 09:17:59 +0000 (+0100) Subject: Syntax fixes to latex export page X-Git-Tag: release_7.9.3~57 X-Git-Url: http://orgmode.org/w/?p=worg.git;a=commitdiff_plain;h=62aa77a4cf9f2dc52b3221f18a2e55dfebd60053 Syntax fixes to latex export page - aligned a backtick to a apostrophe to conform with general elisp style - a code block could not be exported properly because of faulty syntax - correcting syntactical support of sentence ending --- diff --git a/org-tutorials/org-latex-export.org b/org-tutorials/org-latex-export.org index 1ead7e0..a2ffe16 100644 --- a/org-tutorials/org-latex-export.org +++ b/org-tutorials/org-latex-export.org @@ -110,7 +110,7 @@ Here is a standard setup for export to a LaTeX book class: #+begin_src emacs-lisp (add-to-list 'org-export-latex-classes - `("book" + '("book" "\\documentclass{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") @@ -130,9 +130,9 @@ Then, in the Org file with a book-full of notes, add this line: A useful set of alternatives is the [[http://www.komascript.de/][KOMA script]] classes. These have a somewhat more modern design than the standard LaTeX classes. -For example, the KOMA script article class can be configured in =.emacs=. +For example, the KOMA script article class can be configured in =.emacs=: -#+begin_src emacs-lisp : +#+begin_src emacs-lisp (add-to-list 'org-export-latex-classes '("koma-article" "\\documentclass{scrartcl}"