更新:我想模仿以下我认为可以追溯到 19 世纪的字体,用于编译的文档中pdflatex
:
但到目前为止,这是我能够制作的(使用pgothfamily
):
与gothfamily
:
与textswab
:
上述三种pdflatex
字体可以用以下代码制作:
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{pgothic,yfonts}
% To redefine the 's' into a "round" one.
\DeclareTextSymbol{\rounds}{LY}{141}
\begin{document}
\LARGE
\noindent \textbf{\pgothfamily{\huge{Exercises}}}
\vspace*{25pt}
\noindent \textbf{\gothfamily{\huge{Exercis:es:}}}
\vspace*{25pt}
\noindent \textbf{\textswab{\huge{Exercis:es:}}}
\end{document}
在我看来,最后一幅图像可能是对所需图像最漂亮的模仿。
pdflatex
问题:除了使用重新定义的“s”之外,有没有更好的方法来模拟所需的字体textswab
?或者,我所展示的可能是最佳方法——考虑到施加的限制。最后,有什么可以做的来更接近地模仿第一幅图中给出的“x”;在我的尝试中,我记得在现代字体中看到过它显示为大写字母?
谢谢。