
The two curves seem to be TikZ different; I drew the first as a hobby curve and the second as an ellipse. The markings are also different; hence I defined two types of decorations (with different types of arguments) in the preamble.
The bullet for the second curve is constructed by trial and error. Maybe, in case you need the drawing later and need to slightly modify it, it would be better to define the bullet through a parameter along the ellipse.
\documentclass[11pt, margin=1cm]{standalone}
\usepackage{tikz}
\definecolor{azul}{RGB}{187, 233, 255}
\usetikzlibrary{arrows}
\usetikzlibrary{calc, math, hobby, decorations.markings}
\tikzset{
>=stealth', % define standard arrow tip
pil/.style={ % define arrow style
->,
thick,
shorten <=2pt,
shorten >=2pt
},
show two/.style={% define markings along path
decorate, decoration={markings,
mark=between positions .1 and .99 step .5 with {
{\arrow[blue, line width=.8pt]{#1}};
}
}
},
show three/.style={% define markings along path
decorate, decoration={markings,
mark=between positions .3 and .99 step #1 with {
{\arrow[blue, line width=.8pt]{>}};
}
}
}
}
\begin{document}
\tikzmath{
real \R, \r;
\R = 2;
\r = .75;
}
\begin{tikzpicture}[every node/.style={color=black, scale=.7}]
\draw[very thin, ->] (0,0) -- (5,0) node[anchor=north west] {$x$};
\draw[very thin, ->] (0,0) -- (0,5) node[anchor=south east] {$y$};
\path (2.5, 2.5) coordinate (B);
\path
($(B)+(240:.7\r)$) coordinate (A1)
($(B)+(270:.65\r)$) coordinate (A2)
($(B)+(269:1.3\r)$) coordinate (A3)
($(B)+(-70:1.8\r)$) coordinate (A4)
($(B)+(-25:2.2\r)$) coordinate (A5)
($(B)+(15:2.\r)$) coordinate (A6)
($(B)+(-10:.9\r)$) coordinate (A7)
($(B)+(-30:.8\r)$) coordinate (A8);
\draw[fill=azul, even odd rule] (B) circle (\R) (B) circle (\r);
\draw[->, gray] (B) -- node[pos=.6, fill=azul] {$\epsilon$} +(135: \R);
\draw[->, gray] (B) -- node[anchor=west, inner sep=1pt] {$\delta$} +(85: \r);
\draw[blue, thick, postaction={show three={.28}}]
(A1) to[curve through={(A2) (A3) (A4) (A5) (A6) (A7) (A8)}] (B);
\filldraw (B) circle (1.5pt) (A1) circle (1.5pt)
node[anchor=north east, inner sep=1pt] {$(\phi(0),\psi(0))$};
\end{tikzpicture}
\begin{tikzpicture}[every node/.style={color=black, scale=.7}]
\draw[very thin, ->] (0,0) -- (5,0) node[anchor=north west] {$x$};
\draw[very thin, ->] (0,0) -- (0,5) node[anchor=south east] {$y$};
\path (2.5, 2.5) coordinate (B);
\path ($(B)+(155:.76*\r)$) coordinate (A1);
\draw[fill=azul, even odd rule] (B) circle (\R) (B) circle (\r);
\draw[->, gray] (B) -- node[pos=.6, fill=azul] {$\epsilon$} +(130: \R);
\draw[->, gray] (B)
-- node[pos=.4, anchor=south east, inner sep=1pt] {$\delta$} +(55: \r);
\draw[blue, thick, postaction={show two={<}}, rotate=35]
(B) ellipse[x radius={\R-.01}, y radius=.5];
\filldraw (B) circle (1.5pt) (A1) circle (1.5pt)
node[anchor=south east, inner sep=1pt] {$(\phi(0),\psi(0))$};
\end{tikzpicture}
\end{document}
\documentclass, ... ) – hpekristiansen Sep 18 '20 at 18:31