Function: LaTeX-item-array

LaTeX-item-array is a byte-compiled function defined in latex.el.

Signature

(LaTeX-item-array &optional SUPPRESS)

Documentation

Insert line break macro on the last line and suitable number of &'s.

For array and tabular environments.

If SUPPRESS is non-nil, do not insert line break macro.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-item-array (&optional suppress)
  "Insert line break macro on the last line and suitable number of &'s.
For array and tabular environments.

If SUPPRESS is non-nil, do not insert line break macro."
  (unless suppress
    (save-excursion
      (end-of-line 0)
      (just-one-space)
      (TeX-insert-macro "\\")))
  (LaTeX-insert-ampersands
   LaTeX-array-skipping-regexp #'LaTeX-array-count-columns))