我正在尝试导入以下符号
\mathbbit{q}
来自 stix 库,
请参阅以下代码:
\documentclass{article}
\usepackage{amsmath}
\DeclareFontEncoding{LS1}{}{}
\DeclareFontSubstitution{LS1}{stix}{m}{n}
\newcommand*\qq{%
\text{%
\fontencoding{LS1}%
\fontfamily{stixbb}%
\fontseries{\textmathversion}%
\fontshape{n}%
\selectfont\symbol{`q}}}
\makeatletter
\newcommand*\textmathversion{\csname textmv@\math@version\endcsname}
\newcommand*\textmv@normal{m}
\newcommand*\textmv@bold{b}
\makeatother
\begin{document}
$\qq$ {\boldmath$\qq$}
\end{document}
不幸的是,这儿没有
ls1stixbbit.fd
/stix 文件夹中的字体,仅限
ls1stixbb.fd
可用。因此,我只能创建非斜体或粗体 q:
有没有办法从 stix 导入斜体黑板 q?
答案1
用途\fontshape{it}
:同一个.fd
文件定义几种字体形状。
代码可以简化。
\documentclass{article}
\usepackage{amsmath}
\DeclareFontEncoding{LS1}{}{}
\DeclareFontSubstitution{LS1}{stix}{m}{n}
\newcommand*\qq{%
\text{\usefont{LS1}{stixbb}{\textmathversion}{n}q}%
}
\newcommand*\qqit{%
\text{\usefont{LS1}{stixbb}{\textmathversion}{it}q}%
}
\makeatletter
\newcommand*\textmathversion{\csname textmv@\math@version\endcsname}
\newcommand*\textmv@normal{m}
\newcommand*\textmv@bold{b}
\makeatother
\begin{document}
$\qq$ {\boldmath$\qq$}
$\qqit$ {\boldmath$\qqit$}
\end{document}