\begin{tabbing}
text \= more text \= still more text \= last text \\
second row \> \> more \\
.
.
.
\end{tabbing}
The tabbing environment provides a way to align text in columns. It
works by setting tab stops and tabbing to them much the way you do
with an ordinary typewriter.
1 – \=
The \= command sets the tab stops.
2 – \>
The \> command causes LaTeX to advance to the next tab stop.
3 – \<
The \< command allows you to put something to the left of the local margin without changing the margin.
4 – \+
The \+ command moves the left margin of the next and all the following commands one tab stop to the right.
5 – \-
The \- command moves the left margin of the next and all the following commands one tab stop to the left.
6 – \'
The \' command moves everything that you have typed so far n the current column , everything starting from the most recent \>, \<, \', \\, or \kill command, to the right of the previous column, flush against the current column's tab stop.
7 – \`
The \` command allows you to put text flushed right against any tab
stop, including tab stop 0. However, it can't move text to the right
of the last column because there's no tab stop there. The \` command
moves all the text that follows it, up to the \\ or \end{tabbing}
command that ends the line, to the right margin of the tabbing
environment. There must be no \> or \' command between the \` and
the command that ends the line.
8 – \kill
The \kill command allows you to set tab stops without producing text. It works just like the \\ except that it throws away the current line instead of producing output for it. The effect of any \=, \+ or \- commands in that line remain in effect.