Ich verwende \setlength{\itemindent}{-1em}
oder, \itemindent=-13pt
um den horizontalen Abstand vor Elementen im Beamer zu verringern, das Problem ist jedoch, dass die zweite Zeile hängt.
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{test}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
\begin{enumerate} \setlength{\itemindent}{-1em}
%\itemindent=-13pt
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\begin{enumerate}\setlength{\itemindent}{-2em}
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\end{enumerate}
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\end{enumerate}
\end{frame}
\end{document}
Antwort1
Sie können Folgendes anpassen \leftmargini
:
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{test}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
\setlength{\leftmargini}{0em}
\setlength{\leftmarginii}{0em}
\setlength{\leftmarginiii}{0em}
\begin{enumerate}
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\begin{enumerate}
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\end{enumerate}
\item Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum
\end{enumerate}
\end{frame}
\end{document}