The output in the MWE posted at the end of this post is shown below. Notice how the default indentation from itemize gives an asymmetric slide w.r.t the spacing to the left and right of the itemize environment. How can I push the bullet points to the left so that the spaces to the left and right are the same? Such a solution would ideally be:
- implementable on a one-off basis, so that it is applied when necessary (since some itemize environments should be given the default indentation)
- independent of the margin size, so that the solution doesn't need to be changed when the margin size is changed
\documentclass{beamer}
\begin{document}
\begin{frame}{A title}
\begin{itemize}
\item Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
\item tempor incididunt ut labore et dolore magna aliqua.
\item Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
\item ut aliquip ex ea commodo consequat.
\begin{itemize}
\item Duis aute irure dolor in reprehenderit in voluptate velit esse
\item cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
\end{itemize}
\end{itemize}
\end{frame}
\end{document}


\setbeamersize{text margin left=0.5cm}or something along those lines. – Mar 24 '18 at 04:01