\begin{table}[htbp]
\centering
\caption{Test results of normal distribution of each indicator data}
\begin{tabular}{ccc}
\toprule
star rating& review headline & review body\\
\midrule
1.0000 &0.0000&0.0000\\
0&1.0000&0\\
0.0000&0&1.0000\\
\bottomrule
\end{tabular}
\end{table}
提问于:
浏览数:
1871
2 回答
0
```tex
\documentclass{article}
\usepackage[a4paper]{geometry}
\usepackage{booktabs,tabularx}
\begin{document}
\begin{table}[htbp]
\centering
\caption{Test results of normal distribution of each indicator data}
\begin{tabularx}{0.9\linewidth}{*{3}{X}}
\toprule
star rating& review headline & review body\\
\midrule
1.0000 &0.0000&0.0000\\
0&1.0000&0\\
0.0000&0&1.0000\\
\bottomrule
\end{tabularx}
\end{table}
\end{document}
```
-
\begin{tabularx}{0.9\textwidth}{*{3}{X<\centering}} 8行建议这么写。 – Jgueee 2020-03-09 23:34 回复
0
```tex
\begin{tabularx}{0.9\textwidth}{*{3}{X<\centering}}
```
啸行的第8行答案建议这么写。
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。