Raaja
Please see the MWE. This used to work until I updated my miktex today:
%&lualatex
% !TeX TXS-program:compile = txs:///lualatex/[--shell-escape]
\documentclass[convert={density=300,outext=.png}]{standalone}
\usepackage{tikz}
\usepackage{tikzpeople}
\usetikzlibrary{positioning,patterns}
\begin{document}
\begin{tikzpicture}
\node[surgeon,minimum size=1.5cm, name = man] {};
\node[ellipse callout, draw,
callout absolute pointer={(man.mouth)] (pointer) {Let's measure};
\end{tikzpicture}
\end{document}
My current version is:
>This is LuaHBTeX, Version 1.12.0 (MiKTeX 2.9.7380 64-bit) (format=lualatex 2020.4.17) 17 APR 2020 11:43
Could someone give me suggestions on how I can overcome this. Seems the manual in `ctan` is not up-to-date.
> Errors due to ellipse callout and callout absolute pointer.
Top Answer
samcarter
There are two tiny mistakes:
- a missing `}` to close `callout absolute pointer={(man.mouth)`
- the `shapes.callouts` library is missing
```
\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikzpeople}
\usetikzlibrary{positioning,patterns,shapes.callouts}
\begin{document}
\begin{tikzpicture}
\node[surgeon,minimum size=1.5cm, name = man] {};
\node[ellipse callout, draw, callout absolute pointer={(man.mouth)}] (pointer) {Let's measure};
\end{tikzpicture}
\end{document}
```
![document.png](/image?hash=452ea2b6f0c1431bce9819bfe787741a07bd4f454054235bb3745f6097ea6835)