How to make subtables on different page.
I have 6 subtables, but some of them go beyond the margin. How to put 4 tables on the 1st page and the other 2 on the 2nd page? I know that we can use ``\continuedfloat'' to split subfigures. Is there any function to splite subtables?
\begin{table}[t]
\caption{title1}
\begin{subtable}[t]{0.48\textwidth}
''''''
\end{subtable}
'''
\begin{table}[t]
\caption{title6}
\begin{subtable}[t]{0.48\textwidth}
''''''
\end{subtable}
\end{table}
0.48\textwidth? What's in thosesubtableenvironments -- atabularenvironment, atabularxenvironment, or something else? Do you allow line-breaking in the cells of the tabular-like environments? – Mico Oct 31 '20 at 06:19