I'm a latex newbie and i just want to wordwrap the columns. I want that every column has the same width. thats all. In my table i have 11 columns and the text are always two words. here is a small example how my table looks like (but with less columns)
Code: Select all
\begin{table}
\centering
\hspace*{0cm}
\begin{tabular}{|l*{3}{|c}}
\hline
\textbf{\small Number} & \textbf{\small long word} & \textbf{\small need wordwrap} & \textbf{\small doesn't work...} \\
\hline
one & a & b& c \\
\hline
two & a & b& c \\
\hline
three & a & b& c \\
\hline
four & a & b& c \\
\hline
five & a & b& c \\
\hline
\end{tabular}
\end{table}