Beamer で異なる余白を持つ同じ (複数の) 列幅

Beamer で異なる余白を持つ同じ (複数の) 列幅

私はモダンテーマを使用していますhttps://github.com/matze/mtheme1 つのスライドに 2 列を使用しようとすると、余白のサイズが異なります。コードは次のとおりです。

\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

列間に距離があるため、各列を 2 つ.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}

ここに画像の説明を入力してください

関連情報