XeLaTeX 和 10x20 字体

XeLaTeX 和 10x20 字体

在 Emacs 中,我使用 10x20 字体,因为它对 Unicode 符号的支持很好。我尝试使用xelatex类似

\documentclass[10pt]{book}
\usepackage{fontspec}

\setmonofont{10x20}

\begin{document}
\texttt{Testing the mono font.}
\end{document}

但我收到以下错误:

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! fontspec error: "font-not-found"
!
! The font "10x20" cannot be found.
!
! See the fontspec documentation for further information.
!
! For immediate help type H <return>.
!...............................................

我知道我应该使用带有的字体名称\setmonofont,但我唯一掌握的信息是 10x20 是 -Misc-Fixed-Medium-R-Normal--20-200-75-75-C-100-ISO10646-1 的简称。

我可以使用 10x20 字体吗xelatex

答案1

10x20 字体几乎肯定是一种可以用于 X11 显示器的位图字体,但不能用于需要 OpenType 或 TrueType 字体的 XeLaTeX 或 LuaLaTeX。

对于具有广泛 Unicode 覆盖范围的等宽字体,您可以尝试包含在 TeX Live 中的 FreeMono。

相关内容