Function: org-latex-subscript
org-latex-subscript is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-latex-subscript SUBSCRIPT CONTENTS INFO)
Documentation
Transcode a SUBSCRIPT 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
;;;; Subscript
(defun org-latex-subscript (_subscript contents _info)
"Transcode a SUBSCRIPT object from Org to LaTeX.
CONTENTS is the contents of the object."
(format "\\textsubscript{%s}" contents))