Variable: org-latex-inputenc-alist
org-latex-inputenc-alist is a customizable variable defined in
ox-latex.el.gz.
Value
nil
Documentation
Alist of inputenc coding system names, and what should really be used.
For example, adding an entry
("utf8" . "utf8x")
will cause \usepackage[utf8x]{inputenc} to be used for buffers that are written as utf8 files.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-inputenc-alist nil
"Alist of inputenc coding system names, and what should really be used.
For example, adding an entry
(\"utf8\" . \"utf8x\")
will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
are written as utf8 files."
:group 'org-export-latex
:type '(repeat
(cons
(string :tag "Derived from buffer")
(string :tag "Use this instead"))))