答案1
这是我从字体表(用于字体编码 TS1、系列、系列和形状的hlcrn8c
字体)中获得的部分内容:hlcn
m
n
项目符号对应于\char"88
(八进制´210
)。因此,这是 Bigelow 和 Holmes 的精确选择。
无论有没有,我都会得到相同的结果chemmacros
(但由于我没有过时的lucidabr
包,所以我使用了lucimatx
)。
\textbullet
通过取消声明与的关联,您可以获得一个圆形子弹TS1
\documentclass[noamssymb]{beamer}
\usepackage{lucimatx} % noamssymb is necessary with lucimatx
\renewcommand\sfdefault{hlcn}
\usepackage{chemmacros}
\UndeclareTextCommand\textbullet{TS1}
\DeclareTextCommandDefault\textbullet{$\bullet$}
\begin{document}
\begin{frame}
\Huge
\textbullet
\end{frame}
\end{document}
没有 Lucida 软件包:
\documentclass{beamer}
\usepackage{chemmacros}
\renewcommand\sfdefault{hlcn}
\AtBeginDocument{%
\UndeclareTextCommand\textbullet{TS1}%
\DeclareTextCommandDefault\textbullet{$\bullet$}%
}
\begin{document}
\begin{frame}
\Huge
\textbullet
\end{frame}
\end{document}