如何在数组和表格环境中添加垂直和水平虚线?

如何在数组和表格环境中添加垂直和水平虚线?

我想使用带有虚线的行和列连接来呈现大矩阵。另外,我需要对一些表格执行相同操作。有没有办法在数组和表格中插入虚线,或者我应该使用\cdot或类似的东西来模拟它?

我使用dcmst 的回答

在此处输入图片描述

但我希望有更好的位置并延伸虚线。与此示例相关的来源是:

\documentclass{article}
\usepackage{arydshln}
\begin{document}

\begin{tabular}{ccc;{0.4pt/10pt}c;{0.4pt/10pt}c;{0.4pt/10pt}c}
text & text & text & & & text \\
text & text & text & & & text \\
text & text & text & & & text \\
\cdashline{1-6}[0.4pt/10pt] \\
\cdashline{1-6}[0.4pt/10pt] \\
\cdashline{1-6}[0.4pt/10pt] \\
text & text & text & & & text 
\end{tabular}

\end{document}

谢谢。

答案1

您可以使用arydshln\hdashline添加水平和:垂直虚线的包

\documentclass{article}
\usepackage{arydshln}
\begin{document}

\begin{tabular}{:c:c:c:}
\hdashline
text & text & text \\
\hdashline
text & text & text \\
\hdashline
text & text & text \\
\hdashline
\end{tabular}

\smallskip
$\begin{array}{:c:c:c:}
\hdashline
1 & 2 & 3 \\
\hdashline
4 & 5 & 6 \\
\hdashline
7 & 8 & 9 \\
\hdashline
\end{array}$

\end{document}

在此处输入图片描述

检查手册的第 2.7 节以了解其他软件包的一些问题。

相关内容