Variable: LaTeX-beamer-color-themes
LaTeX-beamer-color-themes is a customizable variable defined in
tex-style.el.
Value
local
Documentation
Presentation color 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-color-themes 'local
"Presentation color 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-color-themes)
(const :tag "Search once per buffer" local)
(function :tag "Other function")
(list
:value
("albatross" "beetle" "crane" "default" "dolphin" "dove" "fly" "lily"
"orchid" "rose" "seagull" "seahorse" "sidebartab" "structure" "whale")
(set :inline t
(const "albatross")
(const "beetle")
(const "crane")
(const "default")
(const "dolphin")
(const "dove")
(const "fly")
(const "lily")
(const "orchid")
(const "rose")
(const "seagull")
(const "seahorse")
(const "sidebartab")
(const "structure")
(const "whale"))
(repeat :inline t
:tag "Other"
(string)))))