I want to create a table with descriptions with line breaks. Unfortunately, one title is not displayed and I do not know why and how to solve it. My code is the following:
\documentclass{article} \usepackage{rotating} \usepackage{makecell} \usepackage{tabularray} \begin{document} \begin{table} \footnotesize \begin{tblr}{colspec={cQ[c,3cm]Q[c,3cm]Q[c,3cm]Q[c,3cm]}} & \SetCell[c=2]{c} {Chlorination degree of \\ paraffinic compounds $n$\textsubscript{Cl}} & \SetCell[c=2]{c} {Chlorination degree of \\ olefinic compounds $n$\textsubscript{Cl}}\\ & non-exposed (0h) & exposed (144h) & non-exposed (0h) & exposed (144h) \\ Non-hydroxylated & 8.80 $\pm$ 0.00 & 9.07 $\pm$ 0.00 & 8.37 $\pm$ 0.02 & 8.55 $\pm$ 0.01 \\ Mono-hydroxylated & 8.31 $\pm$ 0.06 a) & 7.59 $\pm$ 0.01 & 8.31 $\pm$ 0.06 a) & 7.04 $\pm$ 0.03 \\ Di-hydroxylated & n.d. & 6.61 $\pm$ 0.04 & n.d. & 5.23 $\pm$ 0.01 \\ \end{tblr} \end{table} \end{document} The output is this:
As you can see, the description of the last two columns is missing. What it should look like is this:
The data is taken from https://doi.org/10.1016/j.chemosphere.2020.128288




