Function: org-latex-math-block

org-latex-math-block is a byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-math-block MATH-BLOCK CONTENTS INFO)

Documentation

Transcode a MATH-BLOCK object from Org to LaTeX.

CONTENTS is a string. INFO is a plist used as a communication channel.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defun org-latex-math-block (_math-block contents _info)
  "Transcode a MATH-BLOCK object from Org to LaTeX.
CONTENTS is a string.  INFO is a plist used as a communication
channel."
  (when (org-string-nw-p contents)
    (format "\\(%s\\)" (org-trim contents))))