Function: org-latex-drawer
org-latex-drawer is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-latex-drawer DRAWER CONTENTS INFO)
Documentation
Transcode a DRAWER element from Org to LaTeX.
CONTENTS holds the contents of the block. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Drawer
(defun org-latex-drawer (drawer contents info)
"Transcode a DRAWER element from Org to LaTeX.
CONTENTS holds the contents of the block. INFO is a plist
holding contextual information."
(let* ((name (org-element-property :drawer-name drawer))
(output (funcall (plist-get info :latex-format-drawer-function)
name contents)))
(org-latex--wrap-label drawer output info)))