I want to include a table from another tex file before another table but this pushes the to another page. Do you have any solution to sidestep the problem?
Here is the code
\documentclass[english]{article}
\usepackage{babel}
\usepackage{graphicx}
\usepackage{margin= 1.5 cm}[geometry]
\begin{document}
\include{DS}
\begin{table}[!htpb]
\centering
\begin{tabular}{ccc}
% ...
\end{tabular}
\end{table}
\end{document}
I tried scalebox to resize the second table but it didn't solve the problem.