비머 - 한 미니페이지의 이미지를 공개하면 다른 미니페이지의 내용이 이동됩니다.

비머 - 한 미니페이지의 이미지를 공개하면 다른 미니페이지의 내용이 이동됩니다.

두 개의 수직 s가 있고 minipage오른쪽 미니페이지에 그림을 공개하면 왼쪽 미니페이지의 텍스트가 약간 아래로 이동합니다. 환경 을 활용해 보았 columns으나 결과는 마찬가지였습니다.

여기서는 아무것도 추가/제거되지 않았음에도 불구하고 왼쪽의 텍스트가 낮아지는 슬라이드 2와 3 사이의 전환에 대해 구체적으로 이야기하고 있습니다.저것미니페이지와 반대 움직임이 일어나는 3에서 4로의 전환.

다음은 최소한의 작업 예입니다.

\documentclass[11pt]{beamer}
\usepackage{mwe}

\begin{document}
\begin{frame}{title}{subtitle}
    \begin{minipage}{0.49\linewidth}
        \begin{itemize}
            \item<1-> Serial robots:
            \item[]\only<1> {\includegraphics[width=.8\textwidth]{example-image-10x16}}
            \item[]<2-> 
                Pros:\\ 
            - Easier kin. \& dyn. eq.\\ 
            - Extended reach
            \item[]<2-> 
                Cons: \\ 
            - Reduced stiffness \\ 
            - Low power/weight  
        \end{itemize}
    \end{minipage}
    \begin{minipage}{0.49\linewidth}
        \begin{itemize}
            \item<3-> Parallel robots:      
            \item[]\only<3>{\includegraphics[width=.8\textwidth]{example-image-10x16}}
            \item[]<4>
                Pros:  \\
            - High precision \\ 
            - Very light
            \item[]<4> 
                Cons: \\ 
            - Difficult equations \\ 
            - Smaller workspace
        \end{itemize}
    \end{minipage}
\end{frame}
\end{document}

답변1

Beamer는 두 열을 수직으로 중앙에 맞추려고 시도합니다. 그러나 세 번째 슬라이드에서는 오른쪽 열이 너무 높습니다. 그래서 새로운 중심에 정렬되는 동안 모든 것이 아래로 밀려나는 것처럼 보입니다.

가는 두 가지 방법:

  • . \vbox to0cm{}​( \smash기준선이 그림의 맨 아래에 있으므로 그렇지 않습니다.)
  • \only<4>병렬 로봇의 장점과 원뿔을 할당합니다 .
  • 그리고 어떤 경우에도 안전을 위해 미니페이지를 부수세요.

\documentclass[11pt]{beamer}
\usepackage{mwe}

\begin{document}
\begin{frame}{title}{subtitle}
    \begin{minipage}[c][0pt][c]{0.49\linewidth}
        \begin{itemize}
            \item<1-> Serial robots:
            \item[]\only<1> {\includegraphics[width=.8\textwidth]{example-image-10x16}}
            \item[]<2-> 
                Pros:\\ 
            - Easier kin. \& dyn. eq.\\ 
            - Extended reach
            \item[]<2-> 
                Cons: \\ 
            - Reduced stiffness \\ 
            - Low power/weight  
        \end{itemize}
    \end{minipage}
    \begin{minipage}[c][0pt][c]{0.49\linewidth}
        \begin{itemize}
            \item<3-> Parallel robots:      
            \item[]\only<3>{\vbox to0cm{\includegraphics[width=.8\textwidth]{example-image-10x16}}}
            \item[]<4>
                Pros:  \\
            - High precision \\ 
            - Very light
            \item[]<4> 
                Cons: \\ 
            - Difficult equations \\ 
            - Smaller workspace
        \end{itemize}
    \end{minipage}
\end{frame}
\begin{frame}{title}{subtitle}
    \begin{minipage}[c][0pt][c]{0.49\linewidth}
        \begin{itemize}
            \item<1-> Serial robots:
            \item[]\only<1> {\includegraphics[width=.8\textwidth]{example-image-10x16}}
            \item[]<2-> 
                Pros:\\ 
            - Easier kin. \& dyn. eq.\\ 
            - Extended reach
            \item[]<2-> 
                Cons: \\ 
            - Reduced stiffness \\ 
            - Low power/weight  
        \end{itemize}
    \end{minipage}
    \begin{minipage}[c][0pt][c]{0.49\linewidth}
        \begin{itemize}
            \item<3-> Parallel robots:      
            \item[]\only<3>{\includegraphics[width=.8\textwidth]{example-image-10x16}}
            \item[]<only@4>
                Pros:  \\
            - High precision \\ 
            - Very light
            \item[]<4> 
                Cons: \\ 
            - Difficult equations \\ 
            - Smaller workspace
        \end{itemize}
    \end{minipage}
\end{frame}
\frame{}
\end{document}

관련 정보