无法使盲文字体起作用

无法使盲文字体起作用

我想要使​​用此处找到的 eurobraille 字体:http://www.fakoo.de/braille-fonts/#achtpunkt在乳胶文档中。

我找到了这个安装 ttf 字体的脚本:http://devnotcorp.wordpress.com/2011/06/10/use-truetype-font-with-pdflatex/

我真的不知道应该在脚本中使用什么选项,这就是我所做的:

TEXMF="/usr/local/share/texmf"
FONTFOUNDRY="linotype"
FONTNAME="HBS-8-Braille Taktil"
FONTFAMILY="braille"
FONTENC="8t"
FONTDEFENC="t1"
FONTENCFILE="T1-WGL4.enc"

运行脚本得到以下结果:

*** Finished. The truetype font HBS-8-Braille Taktil is now available as braille in LaTeX.

所以我尝试了这个文档:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{mathpazo}

\begin{document}
Normal Text

{\fontfamily{braille}\selectfont 
Text in Braille%
}

\end{document}

并使用 pdflatex 进行编译。我在途中得到了这个:

LaTeX Font Warning: Font shape `T1/braille/m/n' undefined
(Font)              using `T1/cmr/m/n' instead on input line 8.

但它不起作用。盲文字体没有使用。但我不知道到底出了什么问题。

答案1

这不是您问题的直接答案,但使用 XeLaTeX 或 LuaLaTeX 可以轻松使用此字体。我在系统上将该字体作为常规字体安装,然后使用以下文档:

% !TEX TS-program = xelatex
\documentclass{article}

\usepackage{fontspec}
\newfontfamily\braillefont{HBS-8-Braille Taktil}
\DeclareTextFontCommand{\textbraille}{\braillefont}
\begin{document}
\textbraille{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
\end{document}

代码输出

相关内容