Variable: LaTeX-beamer-outer-themes
LaTeX-beamer-outer-themes is a customizable variable defined in
tex-style.el.
Value
local
Documentation
Presentation outer 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-outer-themes 'local
"Presentation outer 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-outer-themes)
(const :tag "Search once per buffer" local)
(function :tag "Other function")
(list
:value
("default" "infolines" "miniframes" "shadow" "sidebar" "smoothbars"
"smoothtree" "split" "tree")
(set :inline t
(const "default")
(const "infolines")
(const "miniframes")
(const "shadow")
(const "sidebar")
(const "smoothbars")
(const "smoothtree")
(const "split")
(const "tree"))
(repeat :inline t
:tag "Other"
(string)))))