我有一张如下所示的表格:
\begin{table*}[tb]
\centering
\begin{tabular}{M{2.20cm}|M{2.50cm}|M{2.50cm}|M{3.00cm}|M{3.50cm}|M{2.5cm}}
%\toprule
\hline
$\mathsf{Game}_0$ & $\mathsf{Game}_1$ & $\mathsf{Game}_2$ & $\mathsf{Game}_3$ & $\mathsf{Game}_4$ & $\mathsf{Game}_5$ \\
\hline
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
%\midrule
$a$ & $b$ & $c$ & $d$ & $e$ & $\f$ \\
%\midrule
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
%\bottomrule
\hline
\end{tabular}
\caption{Sequence of games.}
\label{tab:games}
\end{table*}
但是,vdot 不在列的中央。有什么办法可以将它们置于中央吗?
答案1
\documentclass[twocolumn]{article}
\usepackage[margin=15mm]{geometry}
\usepackage{array, booktabs}
\newcolumntype{M}[1]{>{\centering\arraybackslash$}m{#1}<{$}}
\begin{document}
\begin{table*}
\centering
\begin{tabular}{M{2.20cm}|M{2.50cm}|M{2.50cm}|M{3.00cm}|M{3.50cm}|M{2.5cm}}
%\toprule
\hline
\mathsf{Game}_0 & \mathsf{Game}_1 & \mathsf{Game}_2 & \mathsf{Game}_3 & \mathsf{Game}_4 & \mathsf{Game}_5 \\
\hline
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
%\midrule
a & b & c & d & e & f \\
%\midrule
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
%\bottomrule
\hline
\end{tabular}
\caption{Sequence of games.}
\label{tab:games}
\end{table*}
\end{document}
以上解决方案基于您对 的定义和页面布局的猜测M
。f
如您所见,所有单元格中的内容都处于数学模式。