Function: org-latex-italic

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

Signature

(org-latex-italic ITALIC CONTENTS INFO)

Documentation

Transcode ITALIC from Org to LaTeX.

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

Source Code

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

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