How to prevent the arcs from combining with tikz-dependency, like

two arcs starting from "had" are separated from each other.
but in the picture generated by the following code, below they are not separated,
\documentclass[12pt]{article}
\usepackage{tikz-dependency}
\begin{document}
\begin{dependency}[theme = simple, edge horizontal padding=3pt]
\begin{deptext}[column sep=1em]
A \& hearing \& is \& scheduled \& on \& the \& issue \& today \& . \\
\end{deptext}
\depedge{1}{3}{ATT}
\depedge{2}{3}{ATT}
\depedge{3}{8}{SBJ}
\depedge{3}{9}{PU}
\depedge{5}{8}{VC}
\depedge{4}{8}{TMP}
\depedge{6}{8}{PC}
\depedge{7}{8}{PC}
\end{dependency}
\end{document}

I have read the tikz-dependency manual, and add the parameter 'edge horizontal padding', but the resulting picture is the same.
Is there a way to prevent the default arc combination?
