Function: org-latex-convert-region-to-latex
org-latex-convert-region-to-latex is an autoloaded, interactive and
byte-compiled function defined in ox-latex.el.gz.
Signature
(org-latex-convert-region-to-latex)
Documentation
Assume the current region has Org syntax, and convert it to LaTeX.
This can be used in any buffer. For example, you can write an itemized list in Org syntax in an LaTeX buffer and use this command to convert it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;###autoload
(defun org-latex-convert-region-to-latex ()
"Assume the current region has Org syntax, and convert it to LaTeX.
This can be used in any buffer. For example, you can write an
itemized list in Org syntax in an LaTeX buffer and use this
command to convert it."
(interactive)
(org-export-replace-region-by 'latex))