I'm writing my thesis with double-spacing however I would like my tables to be formatted with onehalf spacing. Is there a way to do this? I am using \tabular for my tables.
I used \usepackage[doublespacing]{setspace} and following your advice I have tried doing the following: \begin{table}[H] \setspace{single} \centering \begin{tabular}{lcccc} \toprule \textbf{Text} & \textbf{Text} &\textbf{Text} & \textbf{Text} &\textbf{Text}\ \midrule Text & text & text & text & text\ \bottomrule \end{tabular} \end{table}\ however rather than changing spacing it adds "singlespace" to my table, could you help?
setspace, which also provides, e.g., environments likesinglespace. You can put yourtabularenvironment inside such asinglespaceenvironment. If you are using atableenvironment, you can also use\setspace{…}inside thetableenvironment. – cabohah Apr 15 '23 at 10:33however rather than changing spacing it adds "singlespace" to my table, could you help?
– pozzo Apr 15 '23 at 12:25