TikZ: Feinschliff einer Pfeilspitze
[![alt text][1]][2]
Wie kann ich erreichen, dass die Pfeilspitze zur nicht durchgehend gezeichnet wird.
Ziel: Solche Pfeile erstellen:
[![alt text][3]][3]
BTW: Es muss nicht die Pfeilspitze `Latex` sein, bloß bei `Triangle[]` erzeugte es unschöne Proportionen. 
    \documentclass[a4paper, landscape]{scrartcl} 
    
    \usepackage{tikz}
    \usetikzlibrary{arrows.meta}
    %\usetikzlibrary{shapes.arrows}
    
    
    \pagestyle{empty}
    \begin{document}
    
    \def\m{2pt}
    \begin{tikzpicture}[
    overlay, transform shape, remember picture, shift={(current page.center)},
    %
    Pfeil/.style={
    line width=\m, double distance=1.5*\m,
    arrows = {-Latex[length=0pt 3 0, fill=white]},
    line cap=rect,
    }
    ]
    
    \def\L{2}
    \coordinate[label=A] (A) at (-\L,-\L);
    \coordinate[label=B] (B) at (\L,-\L);
    \coordinate[label=C] (C) at (\L,\L);
    \coordinate[label=D] (D) at (-\L,\L);
    
    %\draw[] (A) rectangle (C); 
    
    \draw [Pfeil] (A) -- (C);
    
    \end{tikzpicture}
  [1]: https://texwelt.de/wissen/upfiles/99999999999999.jpg
  [2]: https://texwelt.de/wissen/upfiles/99999999999999.jpg
  [3]: https://texwelt.de/wissen/upfiles/55555555_171.png