Function: LaTeX-env-bib

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

Signature

(LaTeX-env-bib ENVIRONMENT)

Documentation

Insert ENVIRONMENT with label for bibitem.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-env-bib (environment)
  "Insert ENVIRONMENT with label for bibitem."
  (LaTeX-insert-environment environment
                            (concat TeX-grop
                                    (TeX-read-string
                                     (format-prompt "Label for BibItem" "99")
                                     nil nil "99")
                                    TeX-grcl))
  (end-of-line 0)
  (delete-char 1)
  (delete-horizontal-space)
  (LaTeX-insert-item))