! 软件包数组错误:非法前置标记 (C):使用了‘c’

! 软件包数组错误:非法前置标记 (C):使用了‘c’

我正在写我的硕士论文,我在使用 Texstudio 时遇到了问题。我想获取具有特定宽度的表格,但我得到了:

! Package array Error: Illegal pream-token (C): `c' used. 

我将小改为cCC改为c,但不起作用(当我改为时,p{3.5cm}它很好并且我得到了表格,但我想要居中)。

我的代码:

\begin{table}[h!]
\centering
\caption{Distance and temperature}
\label{tab:gr_k}
\begin{tabular}{||C{25mm}|C{40mm}|C{35mm}|C{35mm}||}
\hline
\hline
\multirow{2}{*}{\textbf{Person}}& \textbf{Distance} & \textbf{Temperature 1}&                                              \textbf{Temperature 2} \\
                    &\textbf{[cm]} & \textbf{$T_{P1}$ [$^\circ$C]} & \textbf{$T_{P2}$ [$^\circ$C]} \\

\hline
\textbf{1k} & \multirow{4}{*} {100} & 30,983 & 31,351 \\
\cline{1-1} \cline{3-4}
\textbf{2k} &                       & 29,015 & 29,516  \\
\cline{1-1} \cline{3-4}
\textbf{3k} &                       & 28,871 & 28,736  \\
\cline{1-1} \cline{3-4}
\textbf{4k} &                       & 28,278 & 28,512  \\
\hline
\hline
\textbf{1k} & \multirow{4}{*}{100}  & 30,902 & 31,425  \\
\cline{1-1} \cline{3-4}
\textbf{2k} &                       & 28,910 & 29,480   \\
\cline{1-1} \cline{3-4}
\textbf{3k} &                       & 28,623 & 28,523   \\
\cline{1-1} \cline{3-4}
\textbf{4k} &                       & 29,878 & 29,413   \\
\hline
\hline
\end{tabular}
\end{table}

相关内容