仅将表格中的一个值置于中心

仅将表格中的一个值置于中心

有什么方法可以将“ID”置于下表的中心吗?

\begin{tabular}{|l|c|c|}
\hline
             \centering{ID}          & \multicolumn{2}{c|}{\textbf{RM1}}                      \\ \hline
                                     & $\Delta G^\circ_{cosmo}$ & $\Delta G^\circ_{cosmo-SS}$ \\ \hline
CCref                                &                          &                             \\ \hline
\end{tabular}

我试过了\centering{ID},但是没用。 也试过了,\centerline但是没用。

答案1

我建议你写

\multicolumn{1}{|c|}{ID}

顺便说一句,\centering这是一个开关,不接受参数。

完整的 MWE:

\documentclass{article}
\usepackage{amsmath} % for appropriate sizing of \textrm
\begin{document}
\begin{tabular}{|l|c|c|}
\hline
\multicolumn{1}{|c|}{ID} & \multicolumn{2}{c|}{\textbf{RM1}}                      \\ 
\hline
       & $\Delta G^\circ_{\textrm{cosmo}}$ % per David C.'s suggestion
       & $\Delta G^\circ_{\textrm{cosmo-SS}}$ \\ \hline
CCref  &  &  \\ \hline
\end{tabular}
\end{document}

相关内容