RevTex 4 类中的表格问题

RevTex 4 类中的表格问题

我正在使用 Revtex 4 类,但是表格中的文本对齐存在问题。

这是我的代码,如果需要的话,有什么方法可以使所有数据和换行文本居中对齐吗?

注意:在文章类中看起来不错...

谢谢。

\documentclass[fleqn,12pt,floatfix,superscriptaddress]{revtex4}
\usepackage{amsfonts}
\usepackage{amsmath} 
\usepackage{amssymb}
 \usepackage{tabularx,ragged2e,booktabs}
 \newcolumntype{C}{>{\Centering\arraybackslash}X}
    \usepackage{multirow} 
\begin{document}
\begin{table}
\caption{Parameters}
\begin{tabularx}{\textwidth}{@{}ccccCC@{}}
\hline
Altitude & $\alpha$  &  $\bar{H}$ &  
$\bar{o} $ & velocity $\lambda$ with streaming &  velocity 
$\lambda$ without streaming\\
\hline 
 400 km  & 7  & 6  & 1  & 2 & 1\\
 500 km  & 5  & 6  & 5  & 3 & 1 \\
 600 km  & 29 & 8  & 55 & 4 & 2 \\
 700 km  & 6  & 10 & 6  & 4 & 2\\
 800 km  & 4  & 13 & 8  & 4 & 2\\
 900 km  & 2  & 14 & 4  & 4 & 2\\
 1000 km & 5  & 14 & 4  & 5 & 2\\
 \hline
\end{tabularx}
\label{table:1}
 \end{table}
  \end{document}

看上去是这样的...

相关内容