Tikz
Unfortunately the tikz renders outside of the page boundaries in the Hugo Kroki module. The svg needs to be translated.
```kroki {_type=tikz}
\usepackage{tikz} % required
\begin{document} % required
\begin{tikzpicture}
\path ( 0,2) node [shape=circle,draw] {}
( 0,1) node [shape=circle,draw] {}
( 0,0) node [shape=circle,draw] {}
( 1,1) node [shape=rectangle,draw] {}
(-1,1) node [shape=rectangle,draw] {};
\end{tikzpicture}
\end{document} % required
```