非常简洁,我可以在我的 Windows 机器上使用任何可用的 TrueType 字体与 MikTex 和XeTeX。
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[]{article}
\usepackage{xltxtra,fontspec,xunicode}
\defaultfontfeatures{Scale=MatchLowercase}
\title{Fonttest}
\begin{document}
\section{Section Title} {
\setromanfont{Palatino Linotype}
The quick brown fox jumps over the lazy dog.
}
\section{Section Title} {
\setromanfont{ProggyCleanTTSZBP}
The quick brown fox jumps over the lazy dog.
}
\end{document}
有没有办法为每种可用字体自动生成字体测试页?这样我就不必手动为每种可用字体键入测试页了吗?
实际上,我什至不知道如何获得所需的长字体名称\setromanfont
——除了从屏幕上输入它。显然,Windows 目录只列出了文件名。也许这可以在 TeX 本身中完成,但我可以用 Python 脚本或类似的东西来管理它。