Doppelspitzpfeil mit oberem Symbol in Tikz

Doppelspitzpfeil mit oberem Symbol in Tikz

Wie kann ich dieses Diagramm in Tikz schreiben:

Bildbeschreibung hier eingeben

Hier ist mein Versuch:

\begin{tikzcd}
x \arrow{leftrightarrow}{r}{*} \arrow[dashed]{dr}{*} & &  
y \arrow[dashed]{dl}{*}  \\
& z &
\end{tikzcd}

Antwort1

Mögliche Lösung:

\documentclass[tikz]{standalone}
\usepackage{tikz-cd}

\begin{document}

\begin{tikzcd}
x \arrow[rr, leftrightarrow, "*"] \arrow[dr, dashrightarrow, "*"'] 
 &  & y \arrow[dl, dashrightarrow, "*"] \\
 & z &
\end{tikzcd}

\end{document}

Bildbeschreibung hier eingeben


Bearbeiten:Eine weitere Lösung mit reinem TikZ:

\documentclass[tikz]{standalone}

\begin{document}

\begin{tikzpicture}
 \node (x) at (0,0) {$x$};
 \node (y) at (2,0) {$y$};
 \node (z) at (1,-1) {$z$};

 \draw[<->] (x) -- node[above] {$\ast$} (y);
 \draw[->,dashed] (x) -- node[below left] {$\ast$} (z);
 \draw[->,dashed] (y) -- node[below right] {$\ast$} (z);
\end{tikzpicture}

\end{document}

Antwort2

Bildbeschreibung hier eingeben

\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-cd}

\begin{document}

\begin{tikzcd}
x \arrow[dashed,"*"']{dr}\arrow[leftrightarrow]{rr}{*} & & y \arrow[dashed]{dl}{*}\\
& z &
\end{tikzcd}

\end{document}

Antwort3

Eine einfache Tikz-Lösung:

\documentclass[tikz]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
  \draw[<->] (0,0) node[left] {$x$}--(4,0) node[midway, above]{$*$} node[right]{$y$};
  \draw[->,dashed] (0,0)--(2,-1.7) node[midway,below left]{$*$} node[below]{$z$};
  \draw[->,dashed] (4,0)--(2,-1.7) node[midway,below right]{*};
\end{tikzpicture}
\end{document}

Ausgabe:

Bildbeschreibung hier eingeben

verwandte Informationen