I want to rotate a table of tabularray environment by rotating package in LaTeX.
When I tested, I found that there is an error about tabularray. For example:
\documentclass{article}
\usepackage{tabularray}
\usepackage{rotating} % <-- HERE
\begin{document}
\begin{turn}{180}
blabla dummy text
\begin{table}
\begin{talltblr}[
caption={1},
label={tab:1}
]{
colsep=0.3pt
}
Hello
\end{talltblr}
\end{table}
\end{turn}
\end{document}
Is there a way to combine rotation with tabularray?



tableand not havingtablein this case. What is the reason? – Y. zeng May 07 '22 at 04:55tableis really a shortcut toFloatingBoxThatWillBeCaptionedAsATable(similar forfigure....).... Jokes apart, confusingtableas a something that create a table andfigureas something that create a picture is quite common. – Rmano May 07 '22 at 07:45