我想使用 Dominican/Butterbrotpapier/blackletter 字体,如图所示使用 TeX 模拟打印瑕疵和缺陷?但是,没有 latex 文件以便复制类似的结果。
我将非常感激您提供的任何帮助或指导。
我可以说的是,我曾尝试向该帖子的创建者提出类似的问题,但是,我没有成功。
PS 笔记本电脑运行的是 32 位 Ubuntu 12.04 操作系统
答案1
正如其他人所说,Xe/LuaTeX 将为您提供最灵活的解决方案。不过,至少黑体字体在 (pdf)TeX 中是支持的。CTAN 字体目录具有选择。
例如,TeX Live 中包含以下内容并支持 (pdf)TeX:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{egothic,pgothic}
\usepackage{yfonts}
\newcommand*{\myalpha}{\noindent ABCDEFGHIJKLMNOPQRSTUVWXYZ\\abcdefghijklmnopqrstuvwxyz\\The quick brown fox jumps over the sleazy dog.}
\begin{document}
\section*{Early Gothic}
{\egothfamily \myalpha}
\section*{Gothic Textura Prescius}
{\pgothfamily \myalpha}
\section*{Gotik}
{\gothfamily \myalpha}
\section*{Fraktur}
{\frakfamily \myalpha}
\section*{Schwabacher}
{\swabfamily \myalpha}
\end{document}