Function: org-beamer-publish-to-latex

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

Signature

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

Documentation

Publish an Org file to a Beamer presentation (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-beamer.el.gz
;;;###autoload
(defun org-beamer-publish-to-latex (plist filename pub-dir)
  "Publish an Org file to a Beamer presentation (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 'beamer filename ".tex" plist pub-dir))