들여쓰기를 제거하고 비머의 itemize 환경에 걸어두기

들여쓰기를 제거하고 비머의 itemize 환경에 걸어두기

\setlength{\itemindent}{-1em}비머의 항목 앞에 가로 공간을 줄이기 위해 또는 를 사용하고 있는데 \itemindent=-13pt문제는 두 번째 줄이 멈추는 것입니다.

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

여기에 이미지 설명을 입력하세요

관련 정보