Function: LaTeX-env-args

LaTeX-env-args is a byte-compiled function defined in latex.el.

Signature

(LaTeX-env-args ENVIRONMENT &rest ARGS)

Documentation

Insert ENVIRONMENT and arguments defined by ARGS.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-env-args (environment &rest args)
  "Insert ENVIRONMENT and arguments defined by ARGS."
  (LaTeX-insert-environment environment)
  (LaTeX--env-parse-args args))