Variable: org-latex-text-markup-alist

org-latex-text-markup-alist is a customizable variable defined in ox-latex.el.gz.

Value

((bold . "\\textbf{%s}")
 (code . protectedtexttt)
 (italic . "\\emph{%s}")
 (strike-through . "\\sout{%s}")
 (underline . "\\uline{%s}")
 (verbatim . protectedtexttt))

Documentation

Alist of LaTeX expressions to convert text markup.

The key must be a symbol among bold, code, italic, strike-through, underline and verbatim. The value is a formatting string to wrap fontified text with.

Value can also be set to the following symbols: verb and protectedtexttt. For the former, Org will use "\\verb" to create a format string and select a delimiter character that isn't in the string. For the latter, Org will use "\\texttt" to typeset and try to protect special characters.

If no association can be found for a given markup, text will be returned as-is.

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
;;;; Text markup

(defcustom org-latex-text-markup-alist '((bold . "\\textbf{%s}")
					 (code . protectedtexttt)
					 (italic . "\\emph{%s}")
					 (strike-through . "\\sout{%s}")
					 (underline . "\\uline{%s}")
					 (verbatim . protectedtexttt))
  "Alist of LaTeX expressions to convert text markup.

The key must be a symbol among `bold', `code', `italic',
`strike-through', `underline' and `verbatim'.  The value is
a formatting string to wrap fontified text with.

Value can also be set to the following symbols: `verb' and
`protectedtexttt'.  For the former, Org will use \"\\verb\" to
create a format string and select a delimiter character that
isn't in the string.  For the latter, Org will use \"\\texttt\"
to typeset and try to protect special characters.

If no association can be found for a given markup, text will be
returned as-is."
  :group 'org-export-latex
  :version "26.1"
  :package-version '(Org . "8.3")
  :type 'alist
  :options '(bold code italic strike-through underline verbatim))