如何使用 Zellman 字体排版带连字符的单词?

如何使用 Zellman 字体排版带连字符的单词?

Zellman 字体明显删除了连字符:

\documentclass[11pt]{article}

\input Zallman.fd
\newcommand*\initfamily{\usefont{U}{Zallman}{xl}{n}}

\begin{document}
\normalfont\initfamily
\fontsize{6mm}{6mm}\selectfont Multi-Scale
\end{document}

在此处输入图片描述

有没有什么解决方法来弥补这种情况?

答案1

我已经看到了链接1您的代码:

\input Zallman.fd
\newcommand*\initfamily{\usefont{U}{Zallman}{xl}{n}}

有记载说Zallman Caps 仅提供大写版本. 也进入链接2(标签字符映射.ttf)没有任何-符号。只是通过评论进行了改进@egreg使用.5em而不是.01\textwidth

\documentclass[11pt]{article}
\usepackage{amsmath}

\input Zallman.fd
\newcommand*\initfamily{\usefont{U}{Zallman}{xl}{n}}

\begin{document}
\normalfont\initfamily
\fontsize{6mm}{6mm}\selectfont Multi\rule[.7ex]{.5em}{.1pt}Scale
\end{document}

在此处输入图片描述

答案2

与其使用与字体粗细或设计都不匹配的丑陋线条,不如从字体中借用一些东西?

\documentclass[11pt]{article}

\usepackage{graphicx}

\input Zallman.fd
\newcommand*\initfamily{\usefont{U}{Zallman}{xl}{n}}

\begin{document}
\normalfont\initfamily
\fontsize{6mm}{6mm}\selectfont Multi\raisebox{0.2ex}{\rotatebox{90}{\scalebox{0.5}{I}}}Scale
\end{document}

(大小和位置可根据喜好调整)

相关内容