Variable: LaTeX-beamer-font-themes
LaTeX-beamer-font-themes is a customizable variable defined in
tex-style.el.
Value
local
Documentation
Presentation font themes for the LaTeX beamer package.
It can be a list of themes or a function. If it is the symbol
local, search only once per buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-style.el
(defcustom LaTeX-beamer-font-themes 'local
"Presentation font themes for the LaTeX beamer package.
It can be a list of themes or a function. If it is the symbol
`local', search only once per buffer."
:type
'(choice
(const :tag "TeX search" LaTeX-beamer-search-font-themes)
(const :tag "Search once per buffer" local)
(function :tag "Other function")
(list
:value
("default" "professionalfonts" "serif" "structurebold"
"structureitalicserif" "structuresmallcapsserif")
(set :inline t
(const "default")
(const "professionalfonts")
(const "serif")
(const "structurebold")
(const "structureitalicserif")
(const "structuresmallcapsserif"))
(repeat :inline t
:tag "Other"
(string)))))