- 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
#+begin_src emacs-lisp
(add-to-list 'org-export-latex-classes
- `("book"
+ '("book"
"\\documentclass{book}"
("\\part{%s}" . "\\part*{%s}")
("\\chapter{%s}" . "\\chapter*{%s}")
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}"