Я создаю презентацию с помощью beamer
. В itemize
среде я использую resizebox
определенный элемент. Когда я его использую, положение маркера меняется, как показано на следующем изображении
Мой код
\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}
Есть идеи, почему это происходит и как это можно исправить?
решение1
Ваш измененный размер поля слишком широкий. \textwidth
— это ширина всего текста, включая маркер списка. Используйте что-то вроде0.999\linewidth
Вместо этого используйте что-то вроде. Обратите внимание, что естьразница между\textwidth
и\linewidth
. К сожалению, я не знаю, зачем 0.999
нужен этот фактор.
\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}
В качестве альтернативы вы можете скрыть ширину поля, используя\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}