!缺失数字,视为零。

!缺失数字,视为零。

有人能帮我解决这类问题吗?

!缺失数字,视为零。

\documentclass[DIV=12]{scrartcl}
\usepackage{array, caption, makecell}
\usepackage[table]{xcolor}
\setlength{\extrarowheight}{2pt}



\begin{document}


\begin{table}[hbt!]
\small
\centering
\captionabove{Relation analysis\label{ft}}
\begin{tabular}{|c||*{7}{wc{1.0cm}|}}
\hline
Parameters of output&
\multicolumn{7}{c|}{Characteristicss}\\[1ex]
\cline{2-8}
& \makecell{max.\\ accel.\\ [m s$^{-2}$]} & \makecell{min.\\ accel.\\[m s$^{-2}$]} &Peak &\makecell{Energy\\[$J$]} &\makecell{Dom.\\ freq.\\[$Hz$]} &RMS&\makecell{Event\\ durat.\\[$s$]} \\
\hline
Angular frequency & \cellcolor{red!100}$+++$ & $---$&$+++$& $+++$&$+++$                    & $+++$& $---$\\\hline
Amplitude & \cellcolor{red!60}$+++$ & $---$&$+++$& $+++$&\cellcolor{green!80}$Nan$      & $+++$& $--$\\\hline
Exponential decay coeff. & \cellcolor{red!37}1 & 1&1& 1&\cellcolor{green!80}$Nan$                               & 1& 1\\\hline
Rise time coeff. & \cellcolor{red!10} 1 & 1&1& 1& \cellcolor{green!80} $Nan$                                        & 1& 1\\\hline
Max time interval & \cellcolor{red!2}1 & 1&1& 1&\cellcolor{green!80}$Nan$                                           & 1& 1\\\hline
\end{tabular}
\end{table}
\end{document}

答案1

\\ [m s$^{-2}$]

\\有一个可选参数,提供额外的垂直空间,\\[3pt] 因此在您的情况下您需要“隐藏”,[所以它不被视为参数。

\\{} [m s$^{-2}$]

例如就可以了。

相关内容