Variable: TeX-quote-language-alist

TeX-quote-language-alist is a customizable variable defined in tex.el.

Value

nil

Documentation

Alist for overriding the default language-specific quote insertion.

First element in each item is the name of the language as set by the language style file as a string. Second element is the opening quotation mark. Third element is the closing quotation mark. Opening and closing quotation marks can be specified directly as strings or as functions returning a string. Fourth element is a boolean specifying insertion behavior, overriding TeX-quote-after-quote. See Info node (auctex)European for valid languages.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-quote-language-alist nil
  "Alist for overriding the default language-specific quote insertion.
First element in each item is the name of the language as set by
the language style file as a string.  Second element is the
opening quotation mark.  Third element is the closing quotation
mark.  Opening and closing quotation marks can be specified
directly as strings or as functions returning a string.  Fourth
element is a boolean specifying insertion behavior, overriding
`TeX-quote-after-quote'.  See Info node `(auctex)European' for
valid languages."
  :group 'TeX-quote
  :link '(custom-manual "(auctex)European")
  :type '(repeat (group (choice
                         (const "czech")
                         (const "danish")
                         (const "dutch")
                         (const "german")
                         (const "ngerman")
                         (const "french") ;; not frenchb or francais
                         (const "italian")
                         (const "polish")
                         (const "portuguese")
                         (const "slovak")
                         (const "swedish")
                         (string :tag "Other Language"))
                        (choice :tag "Opening quotation mark" string function)
                        (choice :tag "Closing quotation mark" string function)
                        (boolean :tag "Insert plain quote first" :value t))))