하나의 슬라이드를 다음과 같이 나누고 싶습니다.
----------------------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{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 패키지 keyval 오류: 정의되지 않았습니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 패키지 keyval 오류: 정의되지 않았습니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: 누락 }이 삽입되었습니다. \end{프레임}
32행: \begin{document}는 \end{beamer@framepauses}로 끝납니다. \end{프레임}
32행: 추가 \endgroup. \end{프레임}
32행: }이 너무 많습니다. \end{프레임}
32행: 정의되지 않은 제어 시퀀스입니다. \end{프레임}
32행: \begin{document}는 \end{beamer@frameslide}로 끝납니다. \end{프레임}
32행: 추가 \endgroup. \end{프레임}
line 32: 크기 <4>의 글꼴 모양 `OT1/cmss/m/n'을 사용할 수 없음(Font) 크기 <5> 대체: 최대 1.0pt의 차이(Font)가 있는 크기 대체가 발생했습니다.
답변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}
결과는 다음과 같습니다.