定義投影機的項目符號

定義投影機的項目符號

您好,我的簡報需要以下項目符號結構。最重要的是,我想確保項目符號與文字垂直對齊。我在 Beamer 上使用 Metropolis 主題。你能幫忙嗎?非常感謝! :)

答案1

\documentclass{beamer}
\usetheme{moloch}% modern fork of the metropolis theme

\setbeamertemplate{itemize item}{$\bullet$}
\setbeamertemplate{itemize subitem}{$\circ$}
\setbeamertemplate{itemize subsubitem}{--}

\begin{document}

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

\end{document}

在此輸入影像描述

相關內容