Variable: LaTeX-beamer-inner-themes
LaTeX-beamer-inner-themes is a customizable variable defined in
tex-style.el.
Value
local
Documentation
Presentation inner 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-inner-themes 'local
"Presentation inner 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-inner-themes)
(const :tag "Search once per buffer" local)
(function :tag "Other function")
(list
:value ("circles" "default" "inmargin" "rectangles" "rounded")
(set :inline t
(const "circles")
(const "default")
(const "inmargin")
(const "rectangles")
(const "rounded"))
(repeat :inline t
:tag "Other"
(string)))))