I come from this question that I did a while ago, and now I need to add letters with the same height as the figure that is enclosed by the two circles. I try adding
\draw[line width=3mm] ([xshift=9.5cm]a.north west) to [out=-90,in=-90,looseness=4] ([xshift=13.5cm]a.north west);
to the code but it is not the "U" that I expected haha (I also do not know how to indicate to the looseness command the value that corresponds to the height of the figure). Here is my MWE:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[scale=0.5]
\draw[line width=1mm] (0,0) circle (4.5cm);
\draw[line width=1mm] (0,0) circle (5cm);
\node[minimum size = 2cm,anchor=center,line width=3mm] (a){};
\draw[line width=3mm] ([xshift=\pgflinewidth]a.north west) arc (180:360:2cm and 2cm-0.5\pgflinewidth)
(a.west) -- (a.east)(a.north) -- (a.south) ([xshift=\pgflinewidth]a.south west) arc (180:0:2cm and 2cm-0.5\pgflinewidth);
\draw[line width=3mm] ([xshift=9.5cm]a.north west) to [out=-90,in=-90,looseness=4] ([xshift=13.5cm]a.north west);
\draw[line width=3mm] ([xshift=20cm]a.south west) to [out=90,in=90,looseness=4] ([xshift=24cm]a.south west);
\end{tikzpicture}
\end{document}
I must draw these letters and the dot:
Note: The thickness of a letter must be equal to the rest and a little smaller than the image (neither thin nor thick). Also note that the position of the horizontal line of the "A" is a little below the middle, and the upper belly of the "B" is smaller than the lower one.
Is there any way to do it using the command draw, path or something similar?
Thanks!




tikzpictureenvironment? In the manual, page 181, I only found how to italicize the text. Thank you. – manooooh Jan 28 '18 at 23:49TeXnicCenter. The default text font does not work for me, because for example the "U" has a line at one of its points. If it is possible to change that format, it is useful, even if it is the same text source. – manooooh Jan 28 '18 at 23:56drawcommand: – manooooh Jan 29 '18 at 00:34draw (8,2.2) to [out=-90,in=-90,looseness=3.5] (11.7,2.2); \end{tikzpicture}`
If you compile it, you will see that it is very similar to what I want, of course with another "U", wider below. Do I continue in that way?
– manooooh Jan 29 '18 at 00:35