Variable: org-latex-format-inlinetask-function

org-latex-format-inlinetask-function is a customizable variable defined in ox-latex.el.gz.

Value

org-latex-format-inlinetask-default-function

Documentation

Function called to format an inlinetask in LaTeX code.

The function must accept seven parameters:
  TODO the todo keyword (string or nil)
  TODO-TYPE the todo type (symbol: todo, done, nil)
  PRIORITY the inlinetask priority (integer or nil)
  NAME the inlinetask name (string)
  TAGS the inlinetask tags (list of strings or nil)
  CONTENTS the contents of the inlinetask (string or nil)
  INFO the export options (plist)

The function should return the string to be exported.

This variable was added, or its default value changed, in Org version
8.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Inlinetasks

(defcustom org-latex-format-inlinetask-function
  'org-latex-format-inlinetask-default-function
  "Function called to format an inlinetask in LaTeX code.

The function must accept seven parameters:
  TODO      the todo keyword (string or nil)
  TODO-TYPE the todo type (symbol: `todo', `done', nil)
  PRIORITY  the inlinetask priority (integer or nil)
  NAME      the inlinetask name (string)
  TAGS      the inlinetask tags (list of strings or nil)
  CONTENTS  the contents of the inlinetask (string or nil)
  INFO      the export options (plist)

The function should return the string to be exported."
  :group 'org-export-latex
  :type 'function
  :version "26.1"
  :package-version '(Org . "8.3"))