I use the following code to create a table with a centered headline.
\begin{tabularx}{\textwidth}{l|X}
\multicolumn{2}{c}{Headline centered} \\
\hline
Column1 & Column2 which should be centered
\end{tabularx}
Now I would like to center the second column, too. But the tabularx package needs at least one column to be X and this column will not be centered.
How can I achieve this ?


