Variable: LaTeX-font-list

LaTeX-font-list is a customizable variable defined in latex.el.

Value

((109 "\\textmc{" "}" "\\mathmc{" "}")
 (103 "\\textgt{" "}" "\\mathgt{" "}") (1 "" "" "\\mathcal{" "}")
 (2 "\\textbf{" "}" "\\mathbf{" "}") (3 "\\textsc{" "}")
 (5 "\\emph{" "}") (6 "\\textsf{" "}" "\\mathsf{" "}")
 (9 "\\textit{" "}" "\\mathit{" "}") (12 "\\textulc{" "}")
 (13 "\\textmd{" "}") (14 "\\textnormal{" "}" "\\mathnormal{" "}")
 (18 "\\textrm{" "}" "\\mathrm{" "}")
 (19 "\\textsl{" "}" "\\mathbb{" "}")
 (20 "\\texttt{" "}" "\\mathtt{" "}") (21 "\\textup{" "}")
 (23 "\\textsw{" "}") (4 "" "" t))

Documentation

Font commands used with LaTeX2e. See TeX-font-list.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-font-list
  '((?\C-a ""              ""  "\\mathcal{"    "}")
    (?\C-b "\\textbf{"     "}" "\\mathbf{"     "}")
    (?\C-c "\\textsc{"     "}")
    (?\C-e "\\emph{"       "}")
    (?\C-f "\\textsf{"     "}" "\\mathsf{"     "}")
    (?\C-i "\\textit{"     "}" "\\mathit{"     "}")
    (?\C-l "\\textulc{"    "}")
    (?\C-m "\\textmd{"     "}")
    (?\C-n "\\textnormal{" "}" "\\mathnormal{" "}")
    (?\C-r "\\textrm{"     "}" "\\mathrm{"     "}")
    (?\C-s "\\textsl{"     "}" "\\mathbb{"     "}")
    (?\C-t "\\texttt{"     "}" "\\mathtt{"     "}")
    (?\C-u "\\textup{"     "}")
    (?\C-w "\\textsw{"     "}")
    (?\C-d "" "" t))
  "Font commands used with LaTeX2e.  See `TeX-font-list'."
  :group 'LaTeX-macro
  :type '(repeat
          (group
           :value (?\C-a "" "")
           (character :tag "Key")
           (string :tag "Prefix")
           (string :tag "Suffix")
           (option (group
                    :inline t
                    (string :tag "Math Prefix")
                    (string :tag "Math Suffix")))
           (option (sexp :format "Replace\n" :value t)))))