如何在 LaTeX 中使用 QT Brush Stroke 字体来表示单个单词?

如何在 LaTeX 中使用 QT Brush Stroke 字体来表示单个单词?

我想使用 QT Brush Stroke 字体来表示 LaTeX 文档中的特殊单词。我该怎么做?我需要安装/导入一个特殊的包吗?

任何帮助将非常感激。

谢谢你,

答案1

\documentclass{article}
\usepackage{iftex}

\iftutex
  \usepackage{fontspec}

  \defaultfontfeatures{ Scale=MatchLowercase, Ligatures=TeX }
  \newfontfamily\qtbrush{QT Brush Stroke}
\else
  \newcommand\qtbrush{\usefont{T1}{pbsi}{xl}{n}}
\fi

\pagestyle{empty} % To format the MWE for TeX.SX

\begin{document}
One {\qtbrush word}.
\end{document}

QT 画笔示例

如果你想变得花哨,你可以\DeclareTextFontCommand\textqt{\qtbrush}\textqt{This is in QT Brush Stroke.}

如果你没有安装字体,OTF版本在qualitype包中,8位版本在brushscr包中。

相关内容