Function: org-latex-radio-target

org-latex-radio-target is a byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-radio-target RADIO-TARGET TEXT INFO)

Documentation

Transcode a RADIO-TARGET object from Org to LaTeX.

TEXT is the text of the target. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Radio Target

(defun org-latex-radio-target (radio-target text info)
  "Transcode a RADIO-TARGET object from Org to LaTeX.
TEXT is the text of the target.  INFO is a plist holding
contextual information."
  (format "\\label{%s}%s" (org-export-get-reference radio-target info) text))