答案1
如果你使用 xelatex 或 lualatex 进行编译,则可以直接访问 unicode 系统字体。以下是示例:
选择字体后,您可以使用 unicode-math
包命令将其设置为文档的数学字体setmathfont{...}
,并使用引用双击符号(=黑板符号)symbb{...}
。
平均能量损失
\documentclass[12pt]{article}
\usepackage{unicode-math}
\setmathfont{TeX Gyre Pagella Math}
\begin{document}
\[\symbb{G}_1, \symbb{G}_2, \symbb{G}_T\]
\end{document}
答案2
您至少需要加载amsfonts
或amssymb
包并使用\mathbb{…}
:
\documentclass[border=5]{standalone}
\usepackage{amsfonts}
\begin{document}
$\mathbb{G}_1$, $\mathbb{G}_2$, $\mathbb{G}_T$
\end{document}
或者,考虑使用txfonts
或pxfonts
获得稍微不同的外观:
\documentclass[border=5]{standalone}
\usepackage{txfonts}
\begin{document}
$\mathbb{G}_1$, $\mathbb{G}_2$, $\mathbb{G}_T$
\end{document}