私は、 beamer 内の項目の前の水平方向のスペースを減らすために\setlength{\itemindent}{-1em}
または を使用しています\itemindent=-13pt
が、問題は 2 行目のハングです。
\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}