Abbildungspfeile tikz
Hallo zusammen.
Ich hätte in der folgenden Grafik anstatt den normalen Pfeilen gerne Abbildungspfeile, also quasi Pfeile die einem "\mapsto" entsprechen. Ist dies Irgendwie möglich?
Viele Grüße,
Christian
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{amsfonts}
\usepackage{amssymb}
\newcommand\punkte[2][]{%
\foreach \p in {#2}
\node[draw,fill,circle,red,minimum size=2pt,inner sep=0pt,#1]at\p{};
}
\usetikzlibrary{positioning,arrows}
\tikzset{
state/.style={circle,draw,minimum size=6ex},
arrow/.style={-latex}}
\usetikzlibrary{hobby}
\begin{document}
\begin{tikzpicture}[scale=0.8]
\draw (0,0) ellipse (30pt and 10pt)node[anchor=east]{$y$};
\draw (0,2) ellipse (30pt and 10pt)node[anchor=east]{$x_i$};
\draw (0,4) ellipse (30pt and 10pt)node[anchor=east]{$x_j$};
\node at (-1.5,2){$U_i$};
\node at (-1.5,4){$U_j$};
\draw [arrow, bend left](1.2,2) to (1.2,0);
\draw [arrow, bend left](1.2,4) to (1.4,0);
\punkte{(0,0),(0,2),(0,4)};
\end{tikzpicture}
\end{document}