Function: org-latex-publish-to-latex

org-latex-publish-to-latex is an autoloaded and byte-compiled function defined in ox-latex.el.gz.

Signature

(org-latex-publish-to-latex PLIST FILENAME PUB-DIR)

Documentation

Publish an Org file to LaTeX.

FILENAME is the filename of the Org file to be published. PLIST is the property list for the given project. PUB-DIR is the publishing directory.

Return output file name.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;###autoload
(defun org-latex-publish-to-latex (plist filename pub-dir)
  "Publish an Org file to LaTeX.

FILENAME is the filename of the Org file to be published.  PLIST
is the property list for the given project.  PUB-DIR is the
publishing directory.

Return output file name."
  (org-publish-org-to 'latex filename ".tex" plist pub-dir))