I am trying to import the following symbol
\mathbbit{q}
from stix library,
see the following code, please:
\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}
Unfortunately, there is no
ls1stixbbit.fd
font in the /stix folder, only
ls1stixbb.fd
is available. Therefore, I am able to create only non-italic or bold q:
Is there any way of importing italic, black-boarded q from stix?


