chemmacros 软件包变更 \textbullet

chemmacros 软件包变更 \textbullet

以下文档产生了一个奇怪的形状\textbullet

\documentclass{article}
\def\sfdefault{hlcn}
\begin{document}
\sffamily\Huge
\textbullet
\end{document}

在此处输入图片描述

注释掉该chemmacros包,或者\sfdefault更改产生一个常规的圆形包:

在此处输入图片描述

我还以为这是 Lucida Casual 字体...发生了什么事?

答案1

这是我从字体表(用于字体编码 TS1、系列、系列和形状的hlcrn8c字体)中获得的部分内容:hlcnmn

在此处输入图片描述

项目符号对应于\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}

相关内容