Variable: font-latex-quotes

font-latex-quotes is a customizable variable defined in font-latex.el.

Value

auto

Documentation

Whether to fontify << French quotes >> or >>German quotes<<.

Also selects "<quote"> versus ">quote"<.

If value auto is chosen, an attempt is being made in deriving the type of quotation mark matching from document settings like the language option supplied to the babel package.

If nil, quoted content will not be fontified.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/font-latex.el
(defcustom font-latex-quotes 'auto
  "Whether to fontify << French quotes >> or >>German quotes<<.
Also selects \"<quote\"> versus \">quote\"<.

If value `auto' is chosen, an attempt is being made in deriving
the type of quotation mark matching from document settings like
the language option supplied to the babel package.

If nil, quoted content will not be fontified."
  :type '(choice (const auto) (const french) (const german) (const nil))
  :group 'font-latex
  :safe (lambda (x) (memq x '(auto french german nil))))