Variable: org-latex--section-no-footnote-backend
org-latex--section-no-footnote-backend is a variable defined in
ox-latex.el.gz.
Value
#s(org-export-backend nil
#s(org-export-backend nil latex
((underline lambda (o c i)
(format
"\\underline{%s}"
c))
(code lambda (o _ _)
(org-latex--protect-texttt
(org-element-property
:value o)))
(verbatim lambda (o _ _)
(org-latex--protect-texttt
(org-element-property
:value o))))
nil nil nil nil)
((footnote-reference . ignore)) nil nil nil nil)
Documentation
Export backend that strips footnotes from title.
Footnotes are not allowed in \section and similar commands that contribute to TOC and footers. See https://orgmode.org/list/691643eb-49d0-45c3-ab7f-a1edbd093bef@gmail.com https://texfaq.org/FAQ-ftnsect
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defconst org-latex--section-no-footnote-backend
(org-export-create-backend
:parent org-latex--section-backend
:transcoders
`((footnote-reference . ignore)))
"Export backend that strips footnotes from title.
Footnotes are not allowed in \\section and similar commands that
contribute to TOC and footers.
See https://orgmode.org/list/691643eb-49d0-45c3-ab7f-a1edbd093bef@gmail.com
https://texfaq.org/FAQ-ftnsect")