The code does not place the last picture (Bunny 3) and its label directly below the second picture (Bunny 2). The picture of Bunny 3 and its label are shifted. How can I do that? Thank you!
\documentclass[9pt,handout,compress,rgb]{beamer}
\usepackage{amstext}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{tikz}
\begin{document}
\begin{frame}
{\bf Contributors}
\begin{center}
\begin{tikzpicture}[scale=.4]
\node[circle,draw=none, label={below:{\newline\bf Bunny 1}}, fill overzoom image={figures/bunny.png},inner sep=1cm] at (0,0) {};
\node[circle,draw=none, label={below:{\newline\bf Bunny 2}}, fill overzoom image={figures/bunny.png},inner sep=1cm] at (13,0) {};
\end{tikzpicture}
\end{center}
\begin{columns}
\begin{column}{0.5\textwidth}
\bluebf{The research was very important.}
\end{column}
\begin{column}{0.4\textwidth}
\begin{center}
\begin{tikzpicture}[scale=.4]
\node[circle,draw=none, label={below:{\newline\bf Bunny 3}}, fill overzoom image={figures/bunny.png},inner sep=1cm] at (13,0) {};
\end{tikzpicture}
\end{center}
\end{column}
\end{columns}
\end{frame}
\end{document}


scaledoesn't do much when it's not applied as an option to a node or iftransform shapeisn't set. Theat (13,0)only specifies the position in relation to other stuff inside thetikzpicturenot in relation to the page or the line. (Change it or leave it out in your last picture to see that.) Also Q516. – Qrrbrbirlbel Sep 16 '22 at 18:48