Adding a itemized list in a multi row/column table cell #519
Closed
russurquhart1
started this conversation in
Q&A
Replies: 1 comment 1 reply
-
To use list-like stuff in table cells, \documentclass[landscape]{article}
\usepackage{tabularray}
\usepackage{xcolor}
\UseTblrLibrary{varwidth}
\begin{document}
%test of a table
\begin{tblr}{colspec={lllll}, hlines, vlines, measure=vbox}
\SetCell[r=2]{l} 2 Rows
& \SetCell[c=2]{l} 2 Columns
& & \SetCell[r=2,c=2]{l} This is a list
\begin{itemize}
\item This is a bullet.
\item Another bullet.
\item Another bullet.
\end{itemize} & \\
& 2-2 & 2-3 & & \\
\end{tblr}
\end{document} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Based on the example in the Tabularray docs, I created a multi row column example, and tried to put an itemized list in one of the cells:
In the version of MiKTeX that I'm using it gives this error message:
I loaded the same file into Overleaf. I compiled correctly, but gave similar error messages. It implied that you could NOT have a itemized list in a table cell. Further in the Tabularray docs, they show a sample of a bullted list in a table cell. Does LaTeX not allow lists in a table cell?
Thanks for any help!
Russ
Beta Was this translation helpful? Give feedback.
All reactions