阴影三角形(逐项列举环境,文章类别)

阴影三角形(逐项列举环境,文章类别)

我想知道如何beamer在课堂上画一个类似的子弹article。我已经接近使用了\renewcommand{labelitemi}{$\triangleright$},但希望三角形被填充,并且不确定是否存在这样的形状。我在下面展示了一个基本示例。

\documentclass{article}
\renewcommand{\labelitemi}{$\triangleright$}

\begin{document}
\section{How can I make the triangle filled in?}
\begin{itemize}
\item Bullet 1
\item Bullet 2
\end{itemize}
\end{document}

在此处输入图片描述

答案1

\blacktriangleright从包装中使用amssymb

\documentclass{article}
\usepackage{amssymb}
\renewcommand{\labelitemi}{$\blacktriangleright$}

\begin{document}
\section{How can I make the triangle filled in?}
\begin{itemize}
    \item Bullet 1
    \item Bullet 2
\end{itemize}
\end{document}

在此处输入图片描述

相关内容