Function: org-latex-property-drawer

org-latex-property-drawer is a byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-property-drawer PROPERTY-DRAWER CONTENTS INFO)

Documentation

Transcode a PROPERTY-DRAWER element from Org to LaTeX.

CONTENTS holds the contents of the drawer. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Property Drawer

(defun org-latex-property-drawer (_property-drawer contents _info)
  "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
CONTENTS holds the contents of the drawer.  INFO is a plist
holding contextual information."
  (and (org-string-nw-p contents)
       (format "\\begin{verbatim}\n%s\\end{verbatim}" contents)))