我怎样才能使小页面顶部对齐?

我怎样才能使小页面顶部对齐?

我有这种结构,左边有两个表,右边有一个表。

\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}

生成的 PDF 如下所示: 在此处输入图片描述

如您所见,左侧的表格向下移动了一点。我该如何避免这种情况?

相关内容