I want to draw a line going off a part of a circle. The two lines get an offset when I use >=latex arrow. The same holds for the shorten option. One of them is enough to create the offset.
It disapears when I remove >=latex and shorten... from style definition.
Is it possible to use latex arrows and shorten option without an offset?
EDIT:
I add a red circle to coordinate mid1. Why is mid1 not on the path drawn from coord1 to coord2?
After some research, I found these threads: Thread 1, Thread 2
Here is a MWE:
\documentclass[border=1pt, tikz]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[connA/.style = {thin, ->, >=latex, shorten <=2pt, shorten >=2pt, bend left=45}]
\coordinate (startcoord);
\coordinate[below=3cm of startcoord] (coord1);
\coordinate[left=3cm of startcoord] (coord2);
\draw[connA] (coord1) to coordinate[midway] (mid1) (coord2);
\draw[connA] (mid1) .. controls +(135:1cm) and +(0:1cm) .. (-4,-1);
\fill[red] (mid1) circle (0.5pt);
\end{tikzpicture}
\end{document}
I use TeX Live 2020.



offsetmeans in this question but if you use or suppressshortenoptions, as starting and ending points are different the path will be different. – Ignasi Jan 04 '21 at 11:13mid1to start the second line. – Dirk Jan 04 '21 at 12:05