Beamer에서 여백이 다른 동일한(다중) 열 너비

Beamer에서 여백이 다른 동일한(다중) 열 너비

나는 Modern Theme를 사용하고 있습니다.https://github.com/matze/mtheme. 하나의 슬라이드에 이중열을 사용하려고 하면 여백의 크기가 다릅니다. 내 코드는 다음과 같습니다.

\documentclass{beamer}
\usetheme{metropolis}           % Use metropolis theme
\begin{document}
\begin{frame}{Introduction: Current Government - Political Change}
\begin{columns}[t]
\begin{column}{0.5\textwidth}
\begin{center}
\textbf{Political Change: Ministry Creation}
{\small \begin{itemize}
\item Ministry of Family, Community, Cooperative and Associative Economy. 
        \begin{itemize}
        \item  Work for the multiplication, strengthening, development and promotion of the Small Business of the Family Economy. 
        \item Focus on: Tourism, gastronomy, handicrafts, production of the family agriculture and services to the tourism.
        \end{itemize}
        \end{itemize}}
\end{center}
\end{column}
\vrule{}
\begin{column}{0.5\textwidth}  %%<--- here
    \begin{center}
    \textbf{Characteristics of the self-employed workers:}
    {\small \begin{itemize}
    \item Ministry of Family, Community, Cooperative and Associative Economy. 
    \begin{itemize}
    \item 
    \end{itemize}
    \end{itemize}}
    \end{center}
 \end{column}
\end{columns}
\end{frame}
\end{document}

내 결과는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

이것은 같은 문제가 있는 또 다른 슬라이드입니다.여기에 이미지 설명을 입력하세요

동일한 마진을 얻으려면 어떻게 해야 합니까?

친애하는,

답변1

열 사이에 약간의 거리가 있기 때문에 각각 의 두 열이 .5\textwidth슬라이드에 들어갈 수 없습니다. 열을 더 작게 사용 onlytextwidth하거나 둘 다 사용하는 것이 더 좋습니다.

\documentclass{beamer}
\usetheme{metropolis}           % Use metropolis theme

\begin{document}

\begin{frame}{your frame}
    \begin{columns}[t]
        \begin{column}{0.5\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
        \vrule{}
        \begin{column}{0.5\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
    \end{columns}
\end{frame}


\begin{frame}{onlytextwidth}
    \begin{columns}[t, onlytextwidth]
        \begin{column}{0.5\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
        \vrule{}
        \begin{column}{0.5\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
    \end{columns}
\end{frame}

\begin{frame}{smaller columns}
    \begin{columns}[t]
        \begin{column}{0.45\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
        \vrule{}
        \begin{column}{0.45\textwidth}
            \rule{\textwidth}{3cm}
        \end{column}
    \end{columns}
\end{frame}

\begin{frame}
    \rule{\textwidth}{3cm}
\end{frame}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보