Variable: org-latex-footnote-defined-format
org-latex-footnote-defined-format is a customizable variable defined
in ox-latex.el.gz.
Value
"\\textsuperscript{\\ref{%s}}"
Documentation
Format string used to format reference to footnote already defined.
%s will be replaced by the label of the referred footnote.
This variable was added, or its default value changed, in Org version
9.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-footnote-defined-format "\\textsuperscript{\\ref{%s}}"
"Format string used to format reference to footnote already defined.
%s will be replaced by the label of the referred footnote."
:group 'org-export-latex
:type '(choice
(const :tag "Use plain superscript (default)" "\\textsuperscript{\\ref{%s}}")
(const :tag "Use Memoir/KOMA-Script footref" "\\footref{%s}")
(string :tag "Other format string"))
:version "26.1"
:package-version '(Org . "9.0"))