将一张幻灯片分成一个块和两列

将一张幻灯片分成一个块和两列

我想要将一张幻灯片分成如下部分:

----------------------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.0pt。

答案1

您必须columncolumns-environment(复数)中使用 -environment(单数)。因此,您必须执行以下操作:

    \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}

结果如下:

在此处输入图片描述

相关内容