I have a large table (height does not fit in page) and I use this code in order to fit it in height.
\begin{table}[]
\resizebox{!}{0.65\textheight}{
\begin{tabular}{lllll}
...
\end{tabular}}
\end{table}
The problem is that the table shrinks also in width. Is it possible to keep the original width of the table but shrink in height in order to fit in page?
I do not want to use some special packages here.
{lll...}use{p{1cm}p{3em}p{40mm}...}and to fix the width of the whole table read about the environmentstabular*,tabularxandtabulary. If that is not enough, use a smaller font if needed, and if that is not enough, is time to redesign (remove irrelevant columns, use shorter headers, round decimals, etc.) – Fran Jul 14 '19 at 08:53