Variable: texinfo-footnote-style
texinfo-footnote-style is a variable defined in texinfmt.el.gz.
Value
"separate"
Documentation
Footnote style, either separate or end.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
;;; @footnote and @footnotestyle
;; In Texinfo, footnotes are created with the `@footnote' command.
;; This command is followed immediately by a left brace, then by the text of
;; the footnote, and then by a terminating right brace. The
;; template for a footnote is:
;;
;; @footnote{TEXT}
;;
;; Info has two footnote styles:
;;
;; * In the End of node style, all the footnotes for a single node
;; are placed at the end of that node. The footnotes are
;; separated from the rest of the node by a line of dashes with
;; the word `Footnotes' within it.
;;
;; * In the Separate node style, all the footnotes for a single node
;; are placed in an automatically constructed node of their own.
;; Footnote style is specified by the @footnotestyle command, either
;; @footnotestyle separate
;; or
;; @footnotestyle end
;;
;; The default is separate
(defvar texinfo-footnote-style "separate"
"Footnote style, either separate or end.")