1

My question is like Changing left margin in itemize environment of beamer class except that I want to increase the left margin by maybe 15ex, while that question sought to suppress the left margin. I will add that one answer to that question noted that it requires to know how to work with the LaTeX list environment. I do not know how.

1 Answers1

3

The left margin of itemizations is controlled by \leftmargini. To only modify it for a single itemization, you can place both inside a a group.

\documentclass{beamer}

\begin{document}

\begin{frame}

    \begin{itemize}
    \item abc
    \end{itemize}

\begingroup
    \addtolength{\leftmargini}{15ex}
    \begin{itemize}
    \item abc
    \end{itemize}
\endgroup

    \begin{itemize}
    \item abc
    \end{itemize}
\end{frame} 

\end{document}

enter image description here