Function: LaTeX-item-tabular*
LaTeX-item-tabular* is a byte-compiled function defined in latex.el.
Signature
(LaTeX-item-tabular* &optional SUPPRESS)
Documentation
Insert line break macro on the last line and suitable number of &'s.
For tabular* environment only.
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-tabular* (&optional suppress)
"Insert line break macro on the last line and suitable number of &'s.
For tabular* environment only.
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-tabular*-skipping-regexp #'LaTeX-array-count-columns))