Variable: LaTeX-includegraphics-extensions

LaTeX-includegraphics-extensions is a customizable variable defined in tex-style.el.

Value

("eps" "jpe?g" "pdf" "png")

Documentation

Extensions for images files used by \includegraphics.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-style.el
;; style/graphicx.el

(defcustom LaTeX-includegraphics-extensions
  '("eps" "jpe?g" "pdf" "png")
  "Extensions for images files used by \\includegraphics."
  :type '(list (set :inline t
                    (const "eps")
                    (const "jpe?g")
                    (const "pdf")
                    (const "png"))
               (repeat :inline t
                       :tag "Other"
                       (string))))