Function: org-list-to-latex
org-list-to-latex is a byte-compiled function defined in
org-list.el.gz.
Signature
(org-list-to-latex LIST &optional PARAMS)
Documentation
Convert LIST into a LaTeX list.
LIST is a parsed plain list, as returned by org-list-to-lisp.
PARAMS is a property list with overruling parameters for
org-list-to-generic. Return converted list as a string.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-to-latex (list &optional params)
"Convert LIST into a LaTeX list.
LIST is a parsed plain list, as returned by `org-list-to-lisp'.
PARAMS is a property list with overruling parameters for
`org-list-to-generic'. Return converted list as a string."
(require 'ox-latex)
(org-list-to-generic list (org-combine-plists '(:backend latex) params)))