Got this code from the website tried for hours to adopt it all I want to do is change the arrows in the middle of the parallelogram to the normal arrows seen in most mathematical text books >> but maybe a bit larger my MWE is below.
\documentclass{scrreprt}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\tikzset{%
->-/.style={decoration={markings, mark=at position 1.5 with {\arrow{>}}},
postaction={decorate}},
->>-/.style={decoration={markings, mark=at position 1.0 with {\arrow{>>}}},
postaction={decorate}},
}
\begin{document}
\begin{tikzpicture}[meme/.pic={ \fill[red ] (150:6pt) to[bend right=10] (0:3pt) to[bend right=10] (-150:6pt)--cycle;
}]
\path
(0,0) coordinate (A)
(2,3) coordinate (B)
(8,3) coordinate (C)
(6,0) coordinate (D);
\node [left] at (0,0) {D};
\node [left] at (2,3) {A};
\node [right] at (8,3) {B};
\node [right] at (6,0) {C};
\draw [thick] (2,3) -- (6,0);
\draw[sloped] (A)
--(B) pic[pos=.5]{meme}
--(C) pic[pos=.46]{meme} pic[pos=.54]{meme}
--(D) pic[pos=.5]{meme}
--cycle pic[pos=.46]{meme} pic[pos=.54]{meme};
\end{tikzpicture}
\end{document}



arrows.metalibrary which can be used in the->-decoration in place of>. Then you also have to use->instead of thememepic (which just draws aLatexarrow tip). But change the position to0.5. – Qrrbrbirlbel Aug 08 '23 at 16:20