I want to draw dash line between rows but when I try to arydshln in the text I get an error. Can't I use dash line in the table created with tabu.
\documentclass{article}
\usepackage{array}
\usepackage{multirow}
\usepackage{longtable}
\usepackage[tableposition=below]{caption}
\usepackage{tabu}
\begin{document}
\begin{longtabu} to \textwidth {XXX}
\hline \textbf{Model Ref.} & \textbf{Change Date} & \textbf{Description of Changes} \\ \hline
\endfirsthead
\hline \textbf{Model Ref.} & \textbf{Change Date} & \textbf{Description of Changes} \\ \hline
\endhead
PD-5&01/2005&New Internet Disclosure rules.\\\hline
PD-4.1&07/2005&Small definition change to consumer loans.\\\hline
PD-4.1&072005&Small definition change to consumer loans.\\
\end{longtabu}
It is working above. But as I said when I try arydshln the text cannot be compiled.
\documentclass{article}
\usepackage{array}
\usepackage{multirow}
\usepackage{longtable}
\usepackage[tableposition=below]{caption}
\usepackage{tabu}
\usepackage{arydshln}
\begin{document}
\begin{longtabu} to \textwidth {XXX}
\hline \textbf{Model Ref.} & \textbf{Change Date} & \textbf{Description of Changes} \\ \hline
\endfirsthead
\hline \textbf{Model Ref.} & \textbf{Change Date} & \textbf{Description of Changes} \\ \hline
\endhead
PD-5&01/2005&New Internet Disclosure rules.\\\hdashline
PD-4.1&07/2005&Small definition change to consumer loans.\\\hdashline
PD-4.1&072005&Small definition change to consumer loans.\\
\end{longtabu}
Thank you.

longtablepackage instead. You could then replace thXtype columns by a newly created column type as follows:\usepackage{ragged2e,calc} \newcolumntype{P}{>{\RaggedRight}p{0.333\textwidth-2\tabcolsep}}and\begin{longtable}{PPP}. – leandriis Nov 02 '18 at 19:56