\hspace*{-9cm} 在 beamer 的列环境中不起作用

\hspace*{-9cm} 在 beamer 的列环境中不起作用

在此处输入图片描述

\documentclass[usenames,dvipsnames]{beamer}
\usepackage{xcolor}
\usepackage{tikz}
\usepackage{listings}
\usepackage{algpseudocode}
\usefonttheme[onlymath]{serif}
\usepackage{amsmath}
\usetheme{Madrid}
\begin{document}
\begin{frame}
  \frametitle{The Euclidian Algorithm}
  \footnotesize
  \begin{columns}[t]
  \begin{column}{0.5\linewidth}
  \vspace*{-2cm}
  \begin{exampleblock}{Algorithm}
   \[ a=q_1b+r_1 \quad\quad 0<r_1<b \]
   \[ b=q_2r_1+r_2 \quad\quad 0<r_2<r_1 \]
   \[ r_1=q_2r_2+r_3 \quad\quad 0<r_3<r_2 \]
   \[ r_{n-2}=q_nr_{n-1}+r_n \quad\quad 0<r_n<r_{n-1} \]
    \[ r_{n-1}=q_{n+1}r_n+0 \]
    \[ d=gcd(a,b)=r_n\]
  \end{exampleblock}
  \end{column}
 \begin{column}{0.33\linewidth}
  \hspace*{-9cm}
  \begin{exampleblock}{Example 1: gcd(10,63)}
   \[63=10.6+3\]
   \[10=3.3.+1\]
   \[3=3.1+0\]
  \end{exampleblock}
    \end{column}
  \begin{column}{0.6\linewidth}
  \vspace*{-1cm}
\footnotesize
  \begin{exampleblock}{Example 2: gcd(1701,3768)}
   \[3768=1701.2+366\]
   \[1701=366.4+237\]
   \[366=237.1+129\]
   \[237=129.1+108\]
   \[129=108.1+21\]
   \[108=21.5+3\]
   \[21=3.7+0\]
  \end{exampleblock}
  \end{column}
\end{columns}
\end{frame}
\end{document}

我想将该Example 1列定位在 的下方AlgorithmExample 2的右侧Algorithm

我把hspace*{-9cm}左移的Example 1列向左移动,但没有移动。

答案1

这是您要找的布局吗?

\documentclass[usenames,dvipsnames]{beamer}
%\usepackage{xcolor}
\usepackage{tikz}
\usepackage{listings}
\usepackage{algpseudocode}
\usefonttheme[onlymath]{serif}
\usepackage{amsmath}
\usetheme{Madrid}
\begin{document}
\begin{frame}
  \frametitle{The Euclidian Algorithm}
  \footnotesize
  \begin{columns}[T]
  \begin{column}{0.5\linewidth}
  \begin{exampleblock}{Algorithm}
   \[ a=q_1b+r_1 \quad\quad 0<r_1<b \]
   \[ b=q_2r_1+r_2 \quad\quad 0<r_2<r_1 \]
   \[ r_1=q_2r_2+r_3 \quad\quad 0<r_3<r_2 \]
   \[ r_{n-2}=q_nr_{n-1}+r_n \quad\quad 0<r_n<r_{n-1} \]
    \[ r_{n-1}=q_{n+1}r_n+0 \]
    \[ d=gcd(a,b)=r_n\]
  \end{exampleblock}
    \begin{exampleblock}{Example 1: gcd(10,63)}
     \[63=10.6+3\]
     \[10=3.3.+1\]
     \[3=3.1+0\]
    \end{exampleblock}
  \end{column}
 \begin{column}{0.45\linewidth}
    \begin{exampleblock}{Example 2: gcd(1701,3768)}
     \[3768=1701.2+366\]
     \[1701=366.4+237\]
     \[366=237.1+129\]
     \[237=129.1+108\]
     \[129=108.1+21\]
     \[108=21.5+3\]
     \[21=3.7+0\]
    \end{exampleblock}
    \end{column}
\end{columns}
\end{frame}
\end{document}

在此处输入图片描述

正如你之前所说的那样:你不需要xcolor使用 beamer

相关内容