1つのスライドを1つのブロックと2つの列に分割します

1つのスライドを1つのブロックと2つの列に分割します

1つのスライドを次のように分割します。

----------------------block1--------------------
------------------------------------------------
------------------------------------------------
------column1-------- %%%%%%%%%%%%%%%%%%%%%------column2-------------------------------------
----------------------%%%%%%%%%%%%%%%%%%%%%--------------------------------------------------
------item1---------- ---- %%%%%%%%%%%%%%%%%%%%% -------item2----------------------------------------
------image1------ %%%%%%%%%%%%%%%%%%%% --------image2--------------------------

これは私のTexファイルです:

\documentclass{beamer}
\mode<presentation> {
    \usetheme{Madrid}
    \setbeamertemplate{footline}[page number]
}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, 
                      % \midrule and \bottomrule in tables
\usepackage{tikz}   % add background image     
\listfiles
\begin{document}

\begin{frame}
    \frametitle{Decision Boundary of logistic regression}
       \begin{block}{Define a threshold for classification}
        If the probability of output ($h_\theta (x)$) 
        exceed $0.5$  choose class $y=1$
        \begin{gather*}
        h_\theta (x)=g(\theta _0 x_0+\theta_1 x_1 ... +\theta_n x_n) \geq 0.5\\
        (\theta _0 x_0+\theta_1 x_1 ... +\theta_n x_n) \geq 0
        \end{gather*}
        \end{block}
        \column{.48\textwidth} % Left column and width
        \begin{itemize}
            \item Linear boundary 
        \end{itemize}
        \includegraphics[scale=0.35]{Linearboundary}
        \column{.48 \textwidth} % Right column and width
        \begin{itemize}
            \item Non linear boundary
        \end{itemize}
       \includegraphics[scale=0.2]{NonLinearBoundary}
        \end{columns}
\end{frame}

%-----------------------------Frame-------------------------------------------
\begin{frame}
    \frametitle{content}

\end{frame}

\end{document}

しかし、エラーがたくさん発生しました。どなたか助けていただけないでしょうか?

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: パッケージ keyval エラー: 未定義です。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: パッケージ keyval エラー: 未定義です。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: } が挿入されていません。\end{frame}

32行目: \begin{document} は \end{beamer@framepauses} によって終了しました。\end{frame}

32行目: 余分な\endgroup。\end{frame}

32行目: }が多すぎます。\end{frame}

32行目: 未定義の制御シーケンス。\end{frame}

32行目: \begin{document} は \end{beamer@frameslide} によって終了しました。\end{frame}

32行目: 余分な\endgroup。\end{frame}

行 32: サイズ <4> のフォント シェイプ `OT1/cmss/m/n' は使用できません (フォント) サイズ <5> が代替されました: 最大 1.0 ポイントの差 (フォント) によるサイズの代替が発生しました。

答え1

column-environment (単数) は -environment (複数) 内で使用する必要がありますcolumns。つまり、次のようにする必要があります。

    \begin{columns}
      \begin{column}{.48\textwidth} % Left column and width
      \end{column}%
      \hfill%
      \begin{column}{.48 \textwidth} % Right column and width
      \end{column}
    \end{columns}

MWE でそれを修正しました。もちろん、画像ファイルも置き換える必要がありました。

私の場合はエラーなしで動作しています。

\documentclass{beamer}
\mode<presentation> {
  \usetheme{Madrid}
  \setbeamertemplate{footline}[page number]
}

\usepackage{graphicx}           % Allows including images
\usepackage{booktabs}           % Allows the use of \toprule, 
                                % \midrule and \bottomrule in tables
\usepackage{tikz}               % add background image     

\begin{document}
\begin{frame}
  \frametitle{Decision Boundary of logistic regression}
  \begin{block}{Define a threshold for classification}
    If the probability of output ($h_\theta (x)$) 
    exceed $0.5$  choose class $y=1$
    \begin{gather*}
      h_\theta (x)=g(\theta _0 x_0+\theta_1 x_1 ... +\theta_n x_n) \geq 0.5\\
      (\theta _0 x_0+\theta_1 x_1 ... +\theta_n x_n) \geq 0
    \end{gather*}
  \end{block}

  \begin{columns}
    \begin{column}{.48\textwidth} % Left column and width
      \begin{itemize}
      \item Linear boundary
      \end{itemize}
      \includegraphics[scale=0.35]{example-image-a}
    \end{column}%
    \hfill%
    \begin{column}{.48 \textwidth} % Right column and width
      \begin{itemize}
      \item Non linear boundary
      \end{itemize}
      \includegraphics[scale=0.2]{example-image-b}
    \end{column}
  \end{columns}
\end{frame}
\end{document}

そして、これが結果です:

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

関連情報