首先我用这一段代码写了表格,没有任何问题
表格是这样的
然后,我想让物资集中地下方的横线断开,不要连在一起,我就把这行cmidrule{2-3}这行代码改成这样
结果它就报错了,完全搞不懂为什么,有咩有董哥来帮个忙
\documentclass{ctexart}
\usepackage{tabularray}
\begin{document}
\begin{table}
\caption{Add caption}
\begin{tblr}
{
colspec = {Q[m,c]Q[m,c]Q[m,c]},
hline{1,3,4,5} = {.05em},
hline{2} = {2}{.05em, leftpos = -1, rightpos = -1},
hline{2} = {3}{.05em, leftpos = -1, rightpos = -1},
cell{1}{2} = {c=2}{}
}
& 物资集中地 & \\
& 9 & 20\\
车辆行驶路径 & {9-12-11-1-7-8-9\\9-5-2-5-6-10-9} & {20-25-16-20-21\\22-27-26-30-26-20}\\
无人机行驶路径 & {9-13-9-11-18-11\\6-3-4-10-14-9} & {25-15-16-25-24-19-24-25\\22-17-22-23-27-28-26-30-29-30}\\
\end{tblr}
\end{table}
\end{document}