我怎样才能在乳胶中写下这些符号?

我怎样才能在乳胶中写下这些符号?

我怎样才能在乳胶中写下以下符号?

在此处输入图片描述

答案1

如果你使用 xelatex 或 lualatex 进行编译,则可以直接访问 unicode 系统字体。以下是示例:

各种 G

选择字体后,您可以使用 unicode-math包命令将其设置为文档的数学字体setmathfont{...},并使用引用双击符号(=黑板符号)symbb{...}

TGPM 字体

平均能量损失

\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

您至少需要加载amsfontsamssymb包并使用\mathbb{…}

在此处输入图片描述

\documentclass[border=5]{standalone}
\usepackage{amsfonts}

\begin{document}

$\mathbb{G}_1$, $\mathbb{G}_2$, $\mathbb{G}_T$

\end{document}

或者,考虑使用txfontspxfonts获得稍微不同的外观:

在此处输入图片描述

\documentclass[border=5]{standalone}
\usepackage{txfonts}

\begin{document}

$\mathbb{G}_1$, $\mathbb{G}_2$, $\mathbb{G}_T$

\end{document}

答案3

尝试

\documentclass[12pt]{article}
\usepackage{amssymb}
\begin{document}
\[
\mathbb{G}_{T}
\]
\end{document} 

在此处输入图片描述

相关内容