I am preparing a paper containing a few IPA characters to submit to a journal and would like to find glyphs that match the font of the journal. The ones generated by tipa don't match:
And from this discussion I gather that tipa is considered a legacy method anyways and we should be moving away from it. The template of the journal uses mathpazo fonts, which, I believe, doesn't have those glyphs.
Here's an 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}
Is there a way to define a different glyph for ʃ, ʤ, and ʧ, preferably without using tipa, that matches the mathpazo font (I believe it is Palatino)?


mathpazofont, but the available fonts are solid, and definitely usable with LaTeX. – barbara beeton May 04 '22 at 21:38pdflatexand won't allow you to use a UTF8 engine likexelatexorlualatexthen you are pretty much stuck with using TIPA, since I don't know of other IPA fonts that are usable withpdflatex. Since I suspect they won't let you change, then TIPA is what you should use even if it's much more designed to match with Computer Modern. The fonts @barbarabeeton mentions are open type fonts that aren't really usable withpdflatex. – Alan Munn May 04 '22 at 22:07pdflatex, unfortunately. I usexelatexfor my own needs, normally, so haven't run into this issue. So aside fromtipathere's no font package that includes ipa characters? – jan May 04 '22 at 22:32