Variable: org-latex-format-headline-function
org-latex-format-headline-function is a customizable variable defined
in ox-latex.el.gz.
Value
org-latex-format-headline-default-function
Documentation
Function for formatting the headline's text.
This function will be called with six arguments:
TODO the todo keyword (string or nil)
TODO-TYPE the type of todo (symbol: todo, done, nil)
PRIORITY the priority of the headline (integer or nil)
TEXT the main headline text (string)
TAGS the tags (list of strings or nil)
INFO the export options (plist)
The function result will be used in the section format string.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Headline
(defcustom org-latex-format-headline-function
'org-latex-format-headline-default-function
"Function for formatting the headline's text.
This function will be called with six arguments:
TODO the todo keyword (string or nil)
TODO-TYPE the type of todo (symbol: `todo', `done', nil)
PRIORITY the priority of the headline (integer or nil)
TEXT the main headline text (string)
TAGS the tags (list of strings or nil)
INFO the export options (plist)
The function result will be used in the section format string."
:group 'org-export-latex
:version "24.4"
:package-version '(Org . "8.0")
:type 'function)