I run into trouble with this example.
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{ccc} \hline
m & mG & Weight \\ \hline
[0, 0, 0] & [0, 0, 0, 0] & 0 \\ \hline
[0, 0, 1] & [1, 0, 1, 1] & 3 \\ \hline
[0, 1, 0] & [0, 1, 0, 1] & 2 \\ \hline
[0, 1, 1] & [1, 1, 1, 0] & 3 \\ \hline
[1, 0, 0] & [1, 0, 0, 1] & 2 \\ \hline
[1, 0, 1] & [0, 0, 1, 0] & 1 \\ \hline
[1, 1, 0] & [1, 1, 0, 0] & 2 \\ \hline
[1, 1, 1] & [0, 1, 1, 1] & 3 \\ \hline
\end{tblr}
\end{document}
I get the error message "Illegal unit of measure(pt inserted)". I suspect that the square brackets used is the culprit, but I can't find a workaround in the documentation. The example compiles fine with round brackets instead of square brackets.


