当我使用 RevTex 4.2 时,我创建了一个包含两个 $\pm$ 注释的表后,不断收到“缺少 $ 插入”错误消息。我使用 $$ 表示 \pm,但我不明白为什么我不断收到该消息。你能帮助我吗?
\documentclass[%
preprint,
doublecolumn,
amsmath,amssymb,
aps,
prc,
]{revtex4-2}
\usepackage{anyfontsize}
\usepackage{float}
\usepackage{mathtools, nccmath}
\usepackage{graphicx}% Include figure files
\usepackage{tabularx}
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
%\usepackage{hyperref}% add hypertext capabilities
\usepackage[mathlines]{lineno}% Enable numbering of text and display math
\usepackage{amsmath}
\linenumbers\relax % Commence numbering lines
%\usepackage{latexsym}
%\usepackage[showframe,%Uncomment any one of the following lines to test
%%scale=0.7, marginratio={1:1, 2:3}, ignoreall,% default settings
%%text={7in,10in},centering,
%%margin=1.5in,
%%total={6.5in,8.75in}, top=1.2in, left=0.9in, includefoot,
%%height=10in,a5paper,hmargin={3cm,0.8in},
%]{geometry}
\begin{document}
\begin{table}
\caption{}
\begin{ruledtabular}
\begin{tabular}{lcdr}
\textrm{$\theta$}& \textrm{C$\pm \sigma C$ }&\textrm{ Time}\\
\colrule
$1$ & $1\pm 1$ &$1\pm$ \\
$1$ & $1\pm 1$ &$1\pm$ \\
\end{tabular}
\end{ruledtabular}
\end{table}
\end{document}
先感谢您
答案1
您正在使用d
-column(由revtex4-2
作为一个特定的D
-column),需要某种形式的十进制表示。更重要的是,D
-columns 始终将其单元格内容设置为数学模式。从dcolumn
包裹 文档:
需要注意的是,
dcolumn
对于数字和分隔符始终使用数学模式。
因此,请避免在列条目中使用数学模式。这是代码的简化版本,尽管它实际上并未使用 -column 的功能D
:
\documentclass{revtex4-2}
\usepackage{dcolumn}% Align table columns on decimal point
\begin{document}
\begin{table}
\caption{Some table}
\begin{ruledtabular}
\begin{tabular}{ l c d }
$\theta$ & $C \pm \sigma C$ & Time \\
\colrule
$1$ & $1\pm 1$ & 1 \pm 2 \\
$1$ & $1\pm 1$ & 1 \pm 3
\end{tabular}
\end{ruledtabular}
\end{table}
\end{document}