我正在尝试使用以下脚本创建表格,但出现此错误
"! Missing $ inserted.<inserted text> $ l.689 \end{tabularx}"
\begin{table*}[t]
\centering\setlength{\tabcolsep}{.3\tabcolsep}
\begin{tabularx}{\linewidth}{|*2{>{\centering\hsize=1.6666\hsize}X|}*8{>{\centering\arraybackslash\hsize=.83333\hsize}X|}}
\hline
{\bf Point of Comparison} & {\bf X} & {\bf Y} & {\bf Z} & {\bf Average_entropy} & {\bf TC & {\bf RT}\\
\hline
\end{tabularx}
\caption{specs}
\label{tab:template}
\end{table*}
答案1
这是你想要的吗?你有多少列?7 或 10。我在最终输出中输入了 10。对于 7 列,你需要重新计算\hsize
。缺少美元符号的错误就是由于这个原因Average_entropy
。我已将其更改为单个破折号。
代码
\documentclass[]{article}
\usepackage[margin=1cm]{geometry}
\usepackage{tabularx}
\begin{document}
\begin{table*}[t]
\centering\setlength{\tabcolsep}{.3\tabcolsep}
\begin{tabularx}{\linewidth}{|*2{>{\centering\hsize=1.6666\hsize}X|}*8{>{\centering\arraybackslash\hsize=.83333\hsize}X|}}
\hline\hline
{\bf Point of Comparison} & {\bf X} & {\bf Y} & {\bf Z} & {\bf Average-entropy} & {\bf TC} & {\bf RT} &&&\\
\hline
\end{tabularx}
\caption{specs}
\label{tab:template}
\end{table*}
\end{document}