我有这种结构,左边有两个表,右边有一个表。
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\center
\begin{minipage}[t]{4cm}
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{3}{|c|}{Heading}\\
\hline
One & Two & Three\\
\hline
One & Two & Three\\
\hline
\end{tabular}\\
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{3}{|c|}{Heading}\\
\hline
One & Two & Three\\
\hline
One & Two & Three\\
\hline
\end{tabular}
\end{minipage}
\begin{minipage}[t]{3cm}
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{3}{|c|}{Heading}\\
\hline
One & Two & Three\\
\hline
One & Two & Three\\
\hline
One & Two & Three\\
\hline
One & Two & Three\\
\hline
\end{tabular}\\
\end{minipage}
\end{document}
如您所见,左侧的表格向下移动了一点。我该如何避免这种情况?