I'm working with
\begin{tabular}{lll}
\textbf{text} & \textbf{text} & \textbf{text}\\
&&\\
.
.
.
&&\\
\end{tabular}
Since lll puts everything at the left. What's the way to center the words of the first line of the table and the rest lines have the lll align?
I'm using
\begin{tabular}{lll}
\multicolumn{3}{c}\textbf{text} & \textbf{text} &\textbf{text}\\
&&\\
&&\\
\end{tabular}
But it's nor working.


{1}in every cell, see also http://tex.stackexchange.com/questions/33486/aligning-inside-tabular-environment-specific-cell – Ronny Nov 25 '15 at 17:50\multicolumn{3}{c}{your text}but it gave me an error. Also I tried putting{1}on each cell but it gave me a bad result. – Schwale Nov 25 '15 at 17:56\hfil\textbf{text}instead\textbf{text}. – wipet Nov 25 '15 at 17:56