I'm dealing with an aesthetic issue related to a multicolumn in a table.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{Large Width Table}\label{ch1tab:rev}
%\renewcommand{\arraystretch}{1.3}
\begin{tabular}{|c|c|}
\toprule
\multicolumn{2}{c}{\textbf{RandomTextRandomText}} \\ %\cline{3-4}
$t_1$ & $t_1$ \\\midrule
1&1\\
1&1\\
1&1 \\ \bottomrule
\multicolumn{2}{c}{Lorem ipsum dolor sit amet, consectetur adipiscing elit}
\end{tabular}
\end{table}
\end{document}
The problem is that the width of the multicolumn (in this case of the whole table) is larger than the sum of the subcolumn and thus all the excessive width is put in the last subcolum.
From some answers it seems that I should force the width of the subcolumn to be greater than the one of the multicolumn. Is there a more elegant and automatic solution?
Thank you



multicolumncontent and than divide it between columns with prescribed width. another way is allow to break content inmulticolumcell to be break into more lines with prescribed widths of columns as well ofmulticolumncell. – Zarko May 14 '19 at 17:08