• 问题说明:

    \mathbb字符的空心化显示仅对字符有效,对数字无效。

  • 解决方法:

    • 使用 bbm 包
    \documentclass{article}
    \usepackage{bbm}
    \begin{document}
    	\[ \mathbbm{1} \]
    	\end{document}
    • 使用 dsfont(double stroke)
    \documentclass{article}
    \usepackage{dsfont}
    \begin{document}
    	\[ \mathds{1} \]
    	\end{document}
  • 当然一种最为简单的是对大写字母I进行空心化,$\mathbb I$

相关文章:

  • 2022-12-23
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2021-12-14
猜你喜欢
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案