答案1
答案2
tz 连字符在德语黑体字 (Gebrochene Schriften) 中很常见。提供此类脚本的 pdfLaTeX 软件包会相应地连字符 tz(但并非所有脚本都适用)。生成的字符看起来与常规拉丁脚本有很大不同,但在某些情况下可能很有用。
例如yfonts
:
\documentclass{article}
\usepackage{yfonts}
\begin{document}
\noindent Normal text in Computer Modern\\
\textgoth{The tz ligature in Gothic}\\
\textswab{No tz ligature in Swabacher}\\
\textfrak{The tz ligature in Fraktur}\\
\end{document}
结果:
答案3
我不知道有哪种 pdfLaTeX 字体支持该字符。可以按照以下方法构建一个还不错的替代字体。
\documentclass{article}
\usepackage[X2,T1]{fontenc}
\usepackage{newunicodechar}
\DeclareRobustCommand{\tz}{t\kern-0.15em{\fontencoding{X2}\selectfont\symbol{"A7}}}
\newunicodechar{ꜩ}{\tz}
\begin{document}
\tz\ \textit{\tz}
ꜩ \textit{ꜩ}
\end{document}
这些newunicodechar
部件是可选的,但是当然,没有它们您只能使用\tz
。
可能需要根据不同的字体系列调整字距量。