::
Sì, ruotandola di 90°, come in questo esempio compilabile:`\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern,textcomp}
\usepackage{rotating}
\begin{document}
%\begin{table}
\begin{sidewaystable}\small
\begin{tabular}{|l|l|l|l|l|l|l|l|l|}
\hline
\textbf{} & \textbf{tal quale} & \textbf{\begin{tabular}[c]{@{}l@{}}forno \\ 50 gradi 2h\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}forno\\ 100 °C 1 h\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}forno \\ 100°C 2h\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}forno \\ 150°C 15 min\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}forno \\ 150°C 1h\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}forno \\ 150 °C 2h\end{tabular}} & \textbf{\begin{tabular}[c]{@{}l@{}}deposizione \\ in temperatura\\ 100 °C2 h\end{tabular}} \\ \hline
\textbf{durezza {[}HV{]}} & 129,75 $\pm$0,5 & 128,75 $\pm$0,96 & 129,25 $\pm$0,96 & 128$\pm$ 2,94 & 137$\pm$ 2,16 & 129,5$\pm$ 1,9 & 121,75 $\pm$2,98 & 149,5 $\pm$0,5 \\ \hline
\textbf{\begin{tabular}[c]{@{}l@{}}lunghezza\\ media\\ delle cricche \\ {[}\textmu m{]}\end{tabular}} & 11,15$\pm$ 4,17 & 15,09 $\pm$5,08 & 13,75$\pm$6,9 & 11,09$\pm$ 6,05 & 19,61$\pm$ 8,48 & 16,73 $\pm$10,07 & 14,81 $\pm$8,13 & 12,9$\pm$ 6,91 \\ \hline
\textbf{\begin{tabular}[c]{@{}l@{}}numero di \\ cricche\end{tabular}} & 11 & 24 & 35 & 11 & 10 & 5 & 23 & 45 \\ \hline
\textbf{\begin{tabular}[c]{@{}l@{}}frequenza \\ di occorrenza\\ cricche{[}\%{]}\end{tabular}} & 0,372 & 0,769 & 0,713 & 0,641 & 0,873 & 0,699 & 0,983 & 0,547 \\ \hline
\textbf{\begin{tabular}[c]{@{}l@{}}porosità\\ percentuale\end{tabular}} & \textbackslash & \textbackslash & \textbackslash & \textbackslash & \textbackslash & \textbackslash & \textbackslash & \textbackslash \\ \hline
\end{tabular}
\caption{Tabella unificatrice di tutti i dati}
\label{generale}
\end{sidewaystable}
%\end{table}
\end{document}`Se hai bisogno di modifiche, leggiti la documentazione del pacchetto rotating.
Questo è ul tipico esempio di una tabella che starebbe in una pagina se scambiassi le righe con le colonne. inoltre il codice sarebbe molto più leggibile se usassi il pacchetto array e i suoi nuovi descrittori di colonne, in particolare [tt]m{…}[/tt] senza mettere dei tebular dentro le celle di un altro tabular.
Comunque anche così, e con il font \small si riesce a far stare il tutto dentro una pagina.