是否有任何形状或项目符号来表示问题?它可以是问号的形状。当我想提出像下面这样的问题时,我想使用它来代替问题这个词。
\documentclass[
aspectratio=169
]{beamer}
\usetheme{Darmstadt}
\setbeamerfont{section in head/foot}{size=\fontsize{4pt}{5pt}\selectfont}
\begin{document}
\section{Descriptive Outline 1}
\subsection{Outline}
\begin{frame}
\frametitle{Outline}
\colorbox{red}{Question} Is there a bullet of shape for question?
\end{frame}
\end{document}
答案1
您可以使用普通的“?”,也可以使用多个包,其中包含用于指示问题的特殊图标。
包装中的一个例子bclogo
(必须调整尺寸以适合您的口味):
\documentclass[
aspectratio=169
]{beamer}
\usepackage{bclogo}
\usetheme{Darmstadt}
\setbeamerfont{section in head/foot}{size=\fontsize{4pt}{5pt}\selectfont}
\begin{document}
\section{Descriptive Outline 1}
\subsection{Outline}
\begin{frame}
\frametitle{Outline}
\bcquestion Is there a question?
\end{frame}
\end{document}