The frame is divided into two columns, and both columns contain figures. However, the space on the left side of the first column is too large (as indicated in the image), and I would like to push the figure further to the left.I am thinking this has something to do with the margin of the frame.
I tried solutions from this question, but they did not work.
Here is a MWE:
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\begin{frame}[t]\vspace{0.1cm}
\begin{columns}[t]
\tikzset{box/.style={inner xsep=0pt}}
\column{.32\textwidth}
\begin{figure}
\includegraphics[height= 2cm, width=4.2cm]{example-image-a}
\includegraphics[height= 2cm, width=4.4cm]{example-image-a}
\end{figure}
\column{.68\textwidth}
\begin{minipage}{\textwidth}
\begin{figure}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\end{figure}
%\footnotetext{text \}
\end{minipage}
\begin{minipage}{\textwidth}
\begin{figure}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\end{figure}
%\footnotetext{text \}
\end{minipage}
\begin{minipage}{\textwidth}
\begin{figure}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\includegraphics[height= 2cm, width=2cm]{example-image-a}
\end{figure}
%\footnotetext{text}
\end{minipage}
\end{columns}
\end{frame}
\end{document}

