Regarding this code my table is fit to the page but the size of words are diminished. What should I do?
\begin{table}[H]
\centering
\caption{Printing parameters}
\resizebox{\columnwidth}{!}{%
\begin{tabular}{ccccccccc}
& Layer height, mm & First layer speed, mm/s &Printing speed, mm/s & Extruder temperature, °C & Bed temperature, °C & Extrusion multiplier & Extrusion width, mm & Fan speed, \% \\ \hline
Carbon fiber tow& & & & & & & &
\end{tabular}
}
\label{table3}
\end{table}
Thanks
\resizeboxwith tables – it leads to inconsistent font sizes. You have several possibilities: using fixed width column types, changing the font size at the very beginning of thetableenvironment and reducing the value oftabcolsep(6pt by default). – Bernard Jan 15 '21 at 13:08