Go to the first, previous, next, last section, table of contents.

tabular

 \begin{tabular}[pos]{cols}
 column 1 entry & column 2 entry ... & column n entry \\
 .
 .
 .
 \end{tabular}

or

 \begin{tabular*}{width}[pos]{cols}
 column 1 entry & column 2 entry ... & column n entry \\
 .
 .
 .
 \end{tabular*}

These environments produce a box consisting of a sequence of rows of items, aligned vertically in columns. The mandatory and optional arguments consist of:

width
Specifies the width of the tabular* environment. There must be rubber space between columns that can stretch to fill out the specified width.
pos
Specifies the vertical position; default is alignment on the centre of the environment.
cols
Specifies the column formatting. It consists of a sequence of the following specifiers, corresponding to the sequence of columns and intercolumn material.

Go to the first, previous, next, last section, table of contents.