Quiero dividir una diapositiva de la siguiente manera:
----------------------block1--------------------
------------------------------------------------
------------------------------------------------
------column1-------- %%%%%%%%%%%%%%%%%%%%%------column2-------------------------------------
----------------------%%%%%%%%%%%%%%%%%%%%%--------------------------------------------------
------item1---------- ---- %%%%%%%%%%%%%%%%%%%%% -------item2----------------------------------------
------image1------ %%%%%%%%%%%%%%%%%%%% --------image2--------------------------
Este es mi archivo 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}
Pero tengo muchos errores. ¿Me preguntaba si algunos pueden ayudarme?
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Error de valor de clave del paquete: indefinido. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Error de valor de clave del paquete: indefinido. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
línea 32: Falta } insertado. \end{marco}
línea 32: \begin{document} terminado en \end{beamer@framepauses}. \end{marco}
línea 32: Extra \endgroup. \end{marco}
Línea 32: Demasiados}'s. \end{marco}
Línea 32: Secuencia de control indefinida. \end{marco}
línea 32: \begin{document} terminado en \end{beamer@frameslide}. \end{marco}
línea 32: Extra \endgroup. \end{marco}
línea 32: Forma de fuente `OT1/cmss/m/n' en tamaño <4> no disponible (Fuente) tamaño <5> sustituido: Se han producido sustituciones de tamaño con diferencias (Fuente) de hasta 1,0 pt.
Respuesta1
Tienes que usar el column
-environment (singular) dentro del columns
-environment (plural). Entonces tienes que hacer algo como esto:
\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}
Lo corregí en tu MWE. Por supuesto, también tuve que reemplazar los archivos de imagen.
Esto funciona sin errores para mí.
\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}
Y este es el resultado: