我想在标题页设计中使用表格内表格,但似乎内部表格始终居中对齐,忽略外部表格行的垂直对齐设置。我该如何修复此问题?
最小示例文档:
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{
colspec = {|Q[1]|Q[1]|},
rows={b}
}
\hline
Anything within this outer table should be bottom-aligned, including the text to the right and the two inner tables below.
& Just some bottom-aligned text. \\
\hline
\begin{tblr}{colspec = {|Q[1]|Q[1]|}}
\hline
This is the first of & two inner tables next to each other. \\
\hline
This one's longer, meaning & the other table should be bottom-aligned. \\
\hline
\end{tblr}
&
\begin{tblr}{colspec = {|Q[1]|Q[1]|}}
\hline
This inner table should be & bottom-aligned \\
\hline
\end{tblr}
\\
\hline
\end{tblr}
\end{document}