在表格中均匀分布对象

在表格中均匀分布对象

我正在尝试使每个框在表格环境中均匀分布。

在此处输入图片描述

有什么想法吗?谢谢,温迪

\documentclass{article}
\usepackage{tikz}

\newcommand{\drawdie}{
\begin{tikzpicture}[x=5em,y=5em,3]
  \draw[thick, rounded corners=0.5,line hidden] (0,0) rectangle (1,1);
\end{tikzpicture}
} 


\begin{document}
\begin{center}\begin{tabular}{c|c}
\drawdie\hspace{1cm}&\hspace{1cm}\drawdie\\
&\\
\hline 
&\\
\drawdie\hspace{1cm}&\hspace{1cm}\drawdie
\end{tabular}\end{center}



\end{document}

答案1

使用 \hspace*{1cm} 效果很好

相关内容