我尝试使用 tabularray 包,但出现括号错误:
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{cells={mode=math}}
1 & 2 \\
[1;2] & [3;4] \\
\end{tblr}
\end{document}
我找到了一个没有模式数学的解决方案,但它不是很令人满意:
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{}
$1$ & $2$ \\
$[1;2]$ & $[3;4]$ \\
\end{tblr}
\end{document}
\begin{tblr}{
hlines,vlines,
colspec={ccQ[c,7em]Q[c,7em]},
}
$I$ & $J$ & $I \cap J$ & $I \cup J$ \\
$[3;6]$ & $[4,2;7,1]$ & & \\
$[-4;6]$ & $]2;+\infty[$ & & \\
$]-\infty;1]$ & $]0;+\infty[$ & & \\
$[-2;8]$ & $[1;3]$ & & \\
$[-3;1]$ & $[2;4]$ & &
\end{tblr}