Function: org-latex-format-headline-default-function

org-latex-format-headline-default-function is a byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-format-headline-default-function TODO TODO-TYPE PRIORITY TEXT TAGS INFO)

Documentation

Default format function for a headline.

See org-latex-format-headline-function for details.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defun org-latex-format-headline-default-function
    (todo _todo-type priority text tags _info)
  "Default format function for a headline.
See `org-latex-format-headline-function' for details."
  (concat
   (and todo (format "{\\bfseries\\sffamily %s} " todo))
   (and priority (format "\\framebox{\\#%c} " priority))
   text
   (and tags
	(format "\\hfill{}\\textsc{%s}"
		(mapconcat #'org-latex--protect-text tags ":")))))