سلام
دو تا راه دیگه هم هست ببینین به دردتون میخوره.
۱) اگه تو جدولتون نمیخواین از خطوط عمودی استفاده کنین، یک راهش اینه:
% In the name of Allah
\documentclass[10pt,a4paper]{paper}
\usepackage{array}
\usepackage{arydshln}
\usepackage{tabu}
\begin{document}
\begin{table}
\centering
\tabulinesep=1em
\begin{tabu}{c:cc}
\hline
header 1 & header 2 & header 3 \\
\hline
1 & 2 & 3 \\\hdashline
4 & 5 & 6 \\
7 & 8 & 9 \\
\hline
\end{tabu}
\end{table}
\end{document}
خروجی:
تو این روش همونطور که میبینین خط عمودی درست رسم نمیشه.
۲)
% In the name of Allah
\documentclass[10pt,a4paper]{paper}
\usepackage{array}
\usepackage{arydshln}
\begin{document}
\begin{table}
\renewcommand{\arraystretch}{2.5}
\extrarowheight=-2pt
\centering
\begin{tabular}{c:cc}
\hline
header 1 & header 2 & header 3 \\
\hline
1 & 2 & 3 \\\hdashline
4 & 5 & 6 \\
7 & 8 & 9 \\
\hline
\end{tabular}
\end{table}
\end{document}
خروجی: