Variable: org-latex-caption-above
org-latex-caption-above is a customizable variable defined in
ox-latex.el.gz.
Value
(table)
Documentation
When non-nil, place caption string at the beginning of elements.
Otherwise, place it near the end. When value is a list of
symbols, put caption above selected elements only. Allowed
symbols are: image, table, src-block and special-block.
This variable was added, or its default value changed, in Org version
8.3.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Generic
(defcustom org-latex-caption-above '(table)
"When non-nil, place caption string at the beginning of elements.
Otherwise, place it near the end. When value is a list of
symbols, put caption above selected elements only. Allowed
symbols are: `image', `table', `src-block' and `special-block'."
:group 'org-export-latex
:version "26.1"
:package-version '(Org . "8.3")
:type '(choice
(const :tag "For all elements" t)
(const :tag "For no element" nil)
(set :tag "For the following elements only" :greedy t
(const :tag "Images" image)
(const :tag "Tables" table)
(const :tag "Source code" src-block)
(const :tag "Special blocks" special-block))))