Does multicolumn works in tabularx context?
the output should be as the attached file
Code: Select all
\documentclass{amsart}
\usepackage{tabularx}
..
\begin{table}[ht]
\begin{center}
\begin{tabularx}{\textwidth}{cXcX}
\toprule
\multicolumn{2}{c}{Scelta A1: Mercato del Lavoro}
&\multicolumn{2}{c}{Scelta B1: Studio a tempo pieno con Borsa di Studio}
\\ \hline
\Box1 & 100 Euro &\Box2 & 300 Euro \\
\Box1 & 100 Euro &\Box2 & 600 Euro \\
\Box1 & 100 Euro &\Box2 & 1.000 Euro \\
\bottomrule
\end{tabularx}
\end{center}
\end{table}
..
\end{document}