I have 2 different kinds of tables:
One has more rows and is shorter

And another with less rows but longer

I have 5 sets of each (total 10 tables).
Is there a way to place each set side by side? That is, [shorter,longer] and have a title per set (5 titles in total) in one page?
I'm currently generating the tables one at a time and it's taking a lot of pages (I'll just show 1 set):
\begin{table}[ht]
\centering
\caption{Title 1}
\begin{tabular}{lS[table-format=1.4]ccS[table-format=1.4]}
\toprule
\thead{Parameter} & {\thead{Actual\\ Value}} & \thead{Range} & {\thead{Parameter\\ Found}} \\
\midrule
$\alpha$ & 0.191 & (0.191, 0.191) & 0.191\\
$\beta$ & 0.05 & (0.05, 0.05) & 0.05\\
$\gamma$ & 0.0294 & (0.0294, 0.0294) & 0.0294\\
\bottomrule
\end{tabular}
\end{table}
\begin{table}[ht]
\centering
\caption{Title 1}
\begin{tabular}{lS[table-format=1.4]ccS[table-format=1.4]}
\toprule
\thead{(S,I,D,R) Error NN} & & \thead{(S,I,D,R) Error Learnable Parameters} } \
\midrule
(0.004, 0.025, 0.003, 0.003) & & (0,0,0,0) \
\bottomrule
\end{tabular}
\end{table}

tableenvironment. (That is a "float", and is always treated as a separate object.) Try using justtabularwithout a blank line between two of them, and see if they fit within the width of the page. If not, would they fit if they were rotated 90 degrees counterclockwise? (You can insert captions later, using thecaptionpackage.) – barbara beeton Jun 30 '21 at 23:54tableparts from both and and blank line in between. Now I just have them one on top of each other, but not side by side. Is there a way to force size such that I can fit the 10 nevertheless? – Penguin Jul 01 '21 at 00:02.48\textwidth), so that two would fit on a "line" with a minimum space between. But the wider form may be too wide for that, (You'd get "overfull hbox" messages, and maybe overprinting, but if properly specified, they'd appear next to each other. That's why I suggested also considering landscape presentation. – barbara beeton Jul 01 '21 at 00:13begin{tabular}{lS[table-format=1.4]ccS[table-format=1.4]}is defined 5 columns:l,S,c,cand againS, you use only (the first) two. I suggest you to make yourself more familiar with writing of table by reading some introductory text about them, for example https://en.wikibooks.org/wiki/LaTeX/Tables – Zarko Jul 01 '21 at 04:32