將一張投影片分為一個區塊和兩列

將一張投影片分為一個區塊和兩列

我想將一張幻燈片分成如下:

----------------------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 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:套件 keyval 錯誤:未定義。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:套件 keyval 錯誤:未定義。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:缺少 } 插入。 \結束{幀}

第 32 行:\begin{document} 以 \end{beamer@framepauses} 結尾。 \結束{幀}

第 32 行:額外的 \endgroup。 \結束{幀}

第 32 行:太多 }。 \結束{幀}

第 32 行:未定義的控制序列。 \結束{幀}

第 32 行:\begin{document} 以 \end{beamer@frameslide} 結尾。 \結束{幀}

第 32 行:額外的 \endgroup。 \結束{幀}

第 32 行:字體形狀“OT1/cmss/m/n”,尺寸 <4> 不可用(字體)尺寸 <5> 已替換:已發生差異(字體)最多 1.0pt 的尺寸替換。

答案1

您必須在-environment(複數)column中使用-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}

這是結果:

在此輸入影像描述

相關內容