I want to bend an additional arrow in a circular smartdiagram. How can i achieve that?
Here is how my diagram looks right now:
Here is how it should look:
Here is a MWE of my current diagram:
documentclass{article}
usepackage{smartdiagram}
usesmartdiagramlibrary{additions}
begin{document}
begin{figure}[ht]
centering
smartdiagramset{
circular final arrow disabled=true,
additions={
additional arrow color=red!50,
additional arrow tip=stealth,
additional arrow line width=3pt,
}
}
smartdiagramadd[circular diagram:clockwise]{
A, B, C, D
}{}
smartdiagramconnect{->, shorten <=8pt, shorten >=8pt}{module3/module2}
end{figure}
end{document}