RevTex 4.2 を使用しているときに、2 つの $\pm$ 注釈を含む表を作成した後、「Missing $ inserted」エラー メッセージが引き続き表示されます。 \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
-列(定義:revtex4-2
特定の列として扱うD
) は、何らかの形式の小数表現を必要とします。さらに重要なのは、D
-columns は常にセルの内容を数式モードで設定することです。dcolumn
パッケージ ドキュメンテーション:
dcolumn
数字と区切り文字には常に数式モードが使用されることに注意してください。
D
したがって、列エントリでは数式モードの使用は避けてください。以下は、 -columnの機能を実際に使用していないものの、コードの簡略化されたバージョンです。
\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}