Удалить отступ и повесить в среде itemize в beamer

Удалить отступ и повесить в среде itemize в beamer

Я использую \setlength{\itemindent}{-1em}или \itemindent=-13ptдля уменьшения горизонтального пространства перед элементами в Beamer, но проблема заключается в зависании второй строки.

\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}

введите описание изображения здесь

решение1

Вы можете настроить \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}

введите описание изображения здесь

Связанный контент