Estoy creando una presentación usando beamer
. En un itemize
entorno, estoy usando resizebox
un elemento en particular. Cuando lo uso, la posición de la bala cambia, como se ve en la siguiente imagen.
mi codigo es
\documentclass[10pt]{beamer}
\setbeamerfont{headline}{size=\footnotesize}
\usetheme{Ilmenau}
\usepackage{amsmath,amssymb}
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}
\begin{itemize}
\item Cross section $A(x,y)B$ : Definition of cross section
\item %\resizebox{\textwidth}{!}{
$\dfrac{d \sigma}{d \Omega}(E,\theta) = \dfrac{Y}{N \left(Q\Omega\right)}\;,
\begin{array}{ll}
Y : & \text{Y}\\
N : & \text{N}\\
Q : & \text{Q}\\
\Omega : & \text{Angle}
\end{array}
$
%}
\item How : Like that
\end{itemize}
\end{frame}
\end{document}
¿Alguna idea de por qué sucede esto y cómo se puede solucionar?
Respuesta1
El cuadro redimensionado es demasiado ancho. \textwidth
es el ancho de todo el texto, incluida la viñeta detallada. Utilice algo como 0.999\linewidth
en su lugar. Tenga en cuenta que hay undiferencia entre \textwidth
y\linewidth
. Lamentablemente no sé por qué 0.999
es necesario el factor.
\documentclass[10pt,huge]{beamer}
\setbeamerfont{headline}{size=\footnotesize}
\usetheme{Ilmenau}
\usepackage{amsmath,amssymb,lmodern}
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}
\begin{itemize}
\item Cross section $A(x,y)B$ : Definition of cross section
\item \resizebox{.999\linewidth}{!}{%
$\dfrac{d \sigma}{d \Omega}(E,\theta) = \dfrac{Y}{N \left(Q\Omega\right)}\;,
\begin{array}{ll}
Y : & \text{Y}\\
N : & \text{N}\\
Q : & \text{Q}\\
\Omega : & \text{Angle}
\end{array}%
$%
}%
\item How : Like that
\end{itemize}
\end{frame}
\end{document}
Alternativamente, puede ocultar el ancho del cuadro usando\makebox
\documentclass[10pt,huge]{beamer}
\setbeamerfont{headline}{size=\footnotesize}
\usetheme{Ilmenau}
\usepackage{amsmath,amssymb,lmodern}
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}
\begin{itemize}
\item Cross section $A(x,y)B$ : Definition of cross section
\item \makebox[0pt][l]{\resizebox{\linewidth}{!}{%
$\dfrac{d \sigma}{d \Omega}(E,\theta) = \dfrac{Y}{N \left(Q\Omega\right)}\;,
\begin{array}{ll}
Y : & \text{Y}\\
N : & \text{N}\\
Q : & \text{Q}\\
\Omega : & \text{Angle}
\end{array}%
$%
}}%
\item How : Like that
\end{itemize}
\end{frame}
\end{document}