ox-latex: Activate smart quotes by default

* lisp/ox-latex.el (latex): Activate smart quotes by default.
This commit is contained in:
Nicolas Goaziou 2013-03-08 23:42:24 +01:00
parent 1d6aba908b
commit cd06578af4
1 changed files with 7 additions and 3 deletions

View File

@ -98,6 +98,8 @@
;; This back-end also offers enhanced support for footnotes. Thus, it
;; handles nested footnotes, footnotes in tables and footnotes in item
;; descriptions.
;;
;; Smart quotes are activated by default.
;;; Code:
@ -174,13 +176,15 @@
(lambda (a s v b)
(if a (org-latex-export-to-pdf t s v b)
(org-open-file (org-latex-export-to-pdf nil s v b)))))))
:options-alist ((:date "DATE" nil "\\today" t)
(:date-format nil nil org-latex-date-timestamp-format)
:options-alist ((:date-format nil nil org-latex-date-timestamp-format)
(:latex-class "LATEX_CLASS" nil org-latex-default-class t)
(:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
(:latex-header "LATEX_HEADER" nil nil newline)
(:latex-header-extra "LATEX_HEADER_EXTRA" nil nil newline)
(:latex-hyperref-p nil "texht" org-latex-with-hyperref t)))
(:latex-hyperref-p nil "texht" org-latex-with-hyperref t)
;; Redefine regular options.
(:date "DATE" nil "\\today" t)
(:with-smart-quotes nil "'" t)))