2

Using tikzpeople I can draw following figure (Bob) (\node[bob,minimum size=0.8cm, label=\scriptsize Bob] (ail)), with the help of following answer:

enter image description here


I was wondering is it possible to draw much basic version of it as follows (text could be on top):

enter image description here

Please note that figure is take from following publication.

alper
  • 1,389

1 Answers1

3

I actually see no reason to do it with tikzpeople if you can do it easily in tikz alone with just a view commands.

\documentclass[border=3.5mm]{standalone}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
    \draw[fill=black] (0,0) circle [radius=18pt] node[yshift=10mm] {Alice};
    \draw[thick,fill=black] (1,-1.8) arc(0:180:1cm and 1 cm);
\end{tikzpicture}

\end{document}

enter image description here

But by loading draft you can draw tikzpeople in their basic shape. But is not really meant to work with, but to compile huge pictures faster.

\documentclass[border=3.5mm]{standalone}

\usepackage[draft]{tikzpeople}

\begin{document}

\begin{tikzpicture} \node[bob,minimum size=1.5cm] {Bob}; \end{tikzpicture}

\end{document}

enter image description here

Roland
  • 6,655
  • I had trouble make drawn people align and scale, please see the related question (https://tex.stackexchange.com/q/591410/127048) – alper Apr 04 '21 at 15:03