乳胶中的部分表格

乳胶中的部分表格

我正在尝试在 Latex 中实现这一点。是否可以使用表格/表格环境来实现?(所有单元格的大小应相等)

在此处输入图片描述

答案1

我不清楚单元格内容应该居中还是左对齐。以下解决方案假设它们应该左对齐。

在此处输入图片描述

\documentclass{article} 
\usepackage{array} % for 'w' column type

\begin{document}

\sffamily % optional
\setlength\extrarowheight{3pt} % optional (for a more open "look")
\begin{tabular}{|*{3}{wl{7mm}|}} % use 'wc' rather than 'wl' if centering is desired
\cline{1-1}
0.1 \\
\hline
0.2 & 0.4 & 0.5\\
\hline
0.3 \\
\cline{1-1}
\end{tabular}

\end{document}

答案2

与。{NiceTabular}nicematrix

\documentclass{article}
\usepackage{nicematrix}

\begin{document}

\begin{NiceTabular}[corners,hvlines,columns-width=6mm]{ccc}
0.1 \\
0.2 & 0.4 & 0.5 \\
0.3 
\end{NiceTabular}

\end{document}

您需要多次编译(因为nicematrix在后台使用 PGF/Tikz 节点)。

上述代码的输出

相关内容