[Tex/LaTex] Combining lmodern and tipa

fontslatin-modernlinguisticstipa

When I use tipa and lmodern in the same document, I always get a couple of font substitution warnings. The document looks fine, though. Is there any way around this?

Minimal example:

\documentclass{article}
\usepackage{lmodern}
\usepackage[]{tipa}
\begin{document}
\textesh
\end{document}

pdflatex output:

test.tex|| LaTeX Font Warning: Font shape `T3/lmr/m/n' undefined

test.tex|| LaTeX Font Warning: Some font shapes were not available, defaults substituted.

EDIT:
See Filtering font substitution warnings caused by the combination of lmodern and tipa if latex crashes when you try Seamus' solution.

Best Answer

Leo Liu's answer says that you can safely ignore them. This answer is a complement to that answer. It tells you how to safely ignore them. (And it borrows heavily from Stefan Kottwitz's answer to an earlier question of mine)

You can use the silence package to turn off warnings from the appropriate package. So

\WarningFilter{latexfont}{Some font}
\WarningFilter{latexfont}{Font shape}

should turn off those warnings.