Function: org-latex-bold

org-latex-bold is a byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD from Org to LaTeX.

CONTENTS is the text with bold markup. INFO is a plist holding contextual information.

Source Code

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

;;;; Bold

(defun org-latex-bold (_bold contents info)
  "Transcode BOLD from Org to LaTeX.
CONTENTS is the text with bold markup.  INFO is a plist holding
contextual information."
  (org-latex--text-markup contents 'bold info))