tikz community,
after hours of seeking a solution to draw the zodiac sign leo I realize that I cannot deal with finding control points to get a wished curve. I tried bend-to and others, no result. I have fixed approx coordinates to show the idea of the wished line. Can anyone help? I do not add a photo because of copyrights, but I think there is no difficulty to get an image of this sign beyond artistic freedom. If possible I want to do it in tikz.
The mwe ist somewhat rediculous. As I have said, I cannot realize it.
\documentclass[]{article}
\usepackage{tikz}
\usetikzlibrary{
}
\usepackage[paperheight=160mm,paperwidth=180mm,top=5mm,bottom=5mm,left=5mm,right=5mm,showframe]{geometry}
\tikzset{%
>=latex, % option for nice arrows
inner sep=0pt,%
outer sep=2pt,%
mark coordinate/.style={inner sep=0pt,outer sep=0pt,minimum size=2pt,fill=black,circle}%
}
\begin{document}
% leo
\begin{tikzpicture}
\draw[step=0.5cm,help lines] (-2,-2) grid (3,4);
\foreach \x in {-2,-1.5,...,3}
\draw (\x cm,1pt) -- (\x cm,-1pt) node[anchor=north] {$\x$};
\foreach \y in {-2,-1.5,...,4}
\draw (1pt,\y cm) -- (-1pt,\y cm) node[anchor=east] {$\y$};
%
\draw[line width=4mm, line cap=round] (0,0) arc [start angle=0, end angle=360, radius=6mm];
%
\filldraw [gray] (0,0) circle [radius=2pt]; %
\filldraw [red] (1,0) circle [radius=2pt];
\filldraw [blue] (2,1) circle [radius=2pt];
\filldraw [green] (2,0) circle [radius=2pt];
%
\draw[line width=4mm, line cap=round] (0,0.5)
to[bend left=100] (0,3)
to[bend left=100] (1,0);
\end{tikzpicture}
%
\begin{tikzpicture}
\coordinate [mark coordinate] (l1) at (0.5,0);
\coordinate [mark coordinate] (l2) at (1.0,0.5);
\coordinate [mark coordinate] (l3) at (0.5,1);
\coordinate [mark coordinate] (l4) at (0.0,0.5);
\draw (l1) -- (l2) -- (l3) -- (l4) --(l1);
% line leaves the "circle" between l2 and l3
\coordinate [mark coordinate] (gb0) at (0.75,0.75);
% building a great bow. no circle
\coordinate [mark coordinate] (gb1) at (0.5,2.0);
\draw (gb0) -- (gb1);
\coordinate [mark coordinate] (gb2) at (1.5,2.5);
\coordinate [mark coordinate] (gb3) at (2.0,2.0);
\coordinate [mark coordinate] (gb4) at (1.55,-0.25);
\draw (gb1) -- (gb2) -- (gb3) -- (gb4);
% last bow to the right
\coordinate [mark coordinate] (lb1) at (1.75,-0.45);
\coordinate [mark coordinate] (lb2) at (2.0,-0.25);
\draw (gb4) -- (lb1) -- (lb2);
\end{tikzpicture}
\end{document}
















wasysymwhich has the command\leo? See here: https://tex.stackexchange.com/questions/70066/astrology-signs – CarLaTeX Sep 11 '21 at 15:21