Variable: LaTeX-provided-package-options
LaTeX-provided-package-options is a buffer-local variable defined in
latex.el.
Documentation
Alist of options provided to LaTeX packages.
For each element, the CAR is the name of the package, the CDR is the list of options provided to it.
For example, its value will be
(("babel" "german")
("geometry" "a4paper" "top=2cm" "bottom=2cm" "left=2.5cm" "right=2.5cm")
...)
See also LaTeX-provided-class-options.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar-local LaTeX-provided-package-options nil
"Alist of options provided to LaTeX packages.
For each element, the CAR is the name of the package, the CDR is
the list of options provided to it.
For example, its value will be
((\"babel\" \"german\")
(\"geometry\" \"a4paper\" \"top=2cm\" \"bottom=2cm\" \"left=2.5cm\" \"right=2.5cm\")
...)
See also `LaTeX-provided-class-options'.")