TikZling – Positioning Drawn Animals in TikZling Package

tikz-pgf

I would like to add absolute position of the animals when the animals of the tikzling package are loaded. Something like this:

\draw(1.5,.5) node {\bear};

But unfortunately, this causes an error.

\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikzlings}
\usepackage{tikzlings-marmots}
\usepackage{tikzlings-bears}
\begin{document}
 \begin{tikzpicture}[scale=2]
    \draw(0,0) grid(9,4);
\bear
%\draw(2.5,.5)node {\bear};
\marmot at (3,1.5);
 \end{tikzpicture}
\end{document}

Best Answer

You can add xshift and yshift to your animal.

tikzlings animals

\documentclass{standalone}
\usepackage{tikz} 
\usepackage{tikzlings}
\usepackage{tikzlings-marmots}
\usepackage{tikzlings-bears}
\begin{document}
 \begin{tikzpicture}[scale=2]
    \draw(0,0) grid(9,4);
\bear[xshift=5cm,yshift=2.5cm];
\marmot[xshift=3cm];
 \end{tikzpicture}
\end{document}