Function: org-latex-center-block

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

Signature

(org-latex-center-block CENTER-BLOCK CONTENTS INFO)

Documentation

Transcode a CENTER-BLOCK element from Org to LaTeX.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Center Block

(defun org-latex-center-block (center-block contents info)
  "Transcode a CENTER-BLOCK element from Org to LaTeX.
CONTENTS holds the contents of the center block.  INFO is a plist
holding contextual information."
  (org-latex--wrap-label
   center-block (format "\\begin{center}\n%s\\end{center}" contents) info))