下面产生了四个表格,我将它们用方框括起来以使它们更清晰。
底部两个盒子的起始高度相等,但顶部两个盒子的起始高度不等。
我希望顶部一对框的起始高度与底部一对框的起始高度完全相同。是否存在某种我没有利用的填充参数?
\documentclass[]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage[T1]{fontenc}
\usepackage[margin=0.5in]{geometry}
\usepackage{empheq}
\usepackage{multicol}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}
\begin{document}
Uneven column heights:
\begin{multicols}{2}
\begin{minipage}[t]{0.5\textwidth}
\begin{empheq}[box=\widefbox]{align}\nonumber
\begin{matrix}
\text{Title number 1} & \text{Title number 2} & \text{Title Number 3}\\
1a & 2a & 3a\\
1b & 2b & 3b\\
1c & 2c & 3c
\end{matrix}
\end{empheq}
\end{minipage}
\begin{minipage}[t]{0.5\textwidth}
\begin{empheq}[box=\widefbox]{align}\nonumber
\begin{matrix}
\text{Title no. 4} & \text{Title no. 5} & \text{Title no. 6}\\
4a & 5a & 6a\\
4b & 5b & 6b\\
4c & 5c & 6c
\end{matrix}
\end{empheq}
\end{minipage}
\end{multicols}
\vspace{1cm}
Even column heights:
\begin{multicols}{2}
\begin{minipage}[t]{0.5\textwidth}
\begin{empheq}[box=\widefbox]{align}\nonumber
\begin{matrix}
\text{Title no. 1} & \text{Title no. 2} & \text{Title no. 3}\\
1a & 2a & 3a\\
1b & 2b & 3b\\
1c & 2c & 3c
\end{matrix}
\end{empheq}
\end{minipage}
\begin{minipage}[t]{0.5\textwidth}
\begin{empheq}[box=\widefbox]{align}\nonumber
\begin{matrix}
\text{Title no. 4} & \text{Title no. 5} & \text{Title no. 6}\\
4a & 5a & 6a\\
4b & 5b & 6b\\
4c & 5c & 6c
\end{matrix}
\end{empheq}
\end{minipage}
\end{multicols}
\end{document}