LateX Beamer:将 tikzpicture 放在图片旁边

LateX Beamer : Putting a tikzpicture next to a picture

我想将 tikzpicture 放在 beamer 上的图片旁边,但现在 tikzpicture 位于幻灯片下方!这是我的代码:

\begin{frame}{Frame name}
\begin{columns}[t]
\column{.5\textwidth}
\centering

\begin{tikzpicture}{Tikzpicture name}
     %my tikzpicture here
\end{tikzpicture}

\column{.5\textwidth}
\centering
      \includegraphics[width=100px, height=200 px]{PICTURE.jpg}
\end{columns}
\end{frame}

您可以使用 T 作为列的对齐选项,以确保列的最顶部而不是第一行的基线对齐。

\documentclass{beamer}

\usepackage{tikz}

\begin{document}

\begin{frame}
  \frametitle{Frame name}
  \begin{columns}[T]
    \begin{column}{.5\textwidth}
      \centering
      \begin{tikzpicture}{Tikzpicture name}
        \draw (0,0) circle [radius=1cm];
      \end{tikzpicture}
    \end{column}
    \begin{column}{.5\textwidth}
      \centering
      \includegraphics[width=100px, height=200 px]{example-image-duck}
    \end{column}
  \end{columns}
\end{frame}

\end{document}