我正在准备一篇包含一些 IPA 字符的论文,准备提交给期刊,我想找到与期刊字体匹配的字形。生成的字形tipa
不匹配:
来自这我认为这种讨论tipa
无论如何都被视为一种遗留方法,我们应该摆脱它。模板期刊使用的mathpazo
字体,我认为,没有这些字形。
以下是 MWE:
\documentclass{article}
\usepackage[T1]{fontenc} % I believe fontenc and inputenc are not needed
\usepackage[utf8]{inputenc} % anymore but the journal template still has them
\usepackage{mathpazo}
\usepackage{tipa}
\usepackage{newunicodechar}
\newunicodechar{ʃ}{\textesh}
\newunicodechar{ʤ}{\textdyoghlig}
\newunicodechar{ʧ}{\textteshlig}
\begin{document}
ʃ t ʧ d ʤ
\end{document}
有没有办法为 ʃ、ʤ 和 ʧ 定义不同的字形,最好不使用tipa
,并且与mathpazo
字体匹配(我相信它是 Palatino)?
答案1
您可以使用 LinguisticsPro,至少是“奇怪”的字形并手动制作连字符。
\documentclass{article}
\usepackage{mathpazo}
\usepackage{tipa}
\usepackage{newunicodechar}
\newunicodechar{ʃ}{\textesh}
%\newunicodechar{ʤ}{\textdyoghlig}
%\newunicodechar{ʧ}{\textteshlig}
\newunicodechar{ʤ}{d\kern-0.22em\textyogh}
\newunicodechar{ʧ}{t\kern-0.18em\textesh}
\DeclareFontFamilySubstitution{T3}{ppl}{LinguisticsPro-LF}
\begin{document}
Text in Palatino abcdef
ʃ t ʧ d ʤ
\end{document}