I have a very long tables in rows and another in columns, i use adjustbox package to resize these tables.
However, the other tables which are perfect fine get effect, some of them became in big font which different that in the thesis. I need help, as I can not find why the table font size get bigger.
This is what I write for long table:
\begin{table}[h]
\caption{}
\label{}
\vspace{0.3cm}\centering\begin{adjustbox}{width=\textwidth}
\begin{tabular}
\end{tabular}
\end{adjustbox}
And this for the regular table:
\begin{table}[h]
\caption{}
\label{}
\vspace{0.3cm}\centering
\begin{tabular}
\end{tabular}
\end{table}
\end{table}
{width=\textwidth}scales smaller tables to the text width, which is probably not what you want. Use{max width=\textwidth}instead to only scale down if the width is larger than the text width. Also instead of\centeringyou might want to try to add thecenterkey after themax widthkey. – Martin Scharrer Oct 01 '20 at 06:37