Function: org-latex-superscript
org-latex-superscript is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-latex-superscript SUPERSCRIPT CONTENTS INFO)
Documentation
Transcode a SUPERSCRIPT object from Org to LaTeX.
CONTENTS is the contents of the object.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Superscript
(defun org-latex-superscript (_superscript contents _info)
"Transcode a SUPERSCRIPT object from Org to LaTeX.
CONTENTS is the contents of the object."
(format "\\textsuperscript{%s}" contents))