According to the description, \dh should do the trick -- but although TIPA is installed and although \textbeta and \textgamma show up just fine, \dh produces an error:
"Command
\dhunavailable"...
Any ideas?
Do you need the fontenc package? Detexify says it should be \dh and that worked for me, with or without tipa
\documentclass{report}
\usepackage[T1]{fontenc}
\usepackage{tipa}
\begin{document}
\dh
\end{document}
tipapackage will give you\dhbut only within an IPA environment (eithertextipa{\dh}or\begin{IPA}...\end{IPA}). Independently of this, the[T1]encoding (plus a font that has the relevant glyph) will enable\dhwithout loadingtipaat all (but obviously not other phonetic characters.) – Alan Munn May 24 '13 at 17:59tipaloadsfontencinternally. If you are going to load it manually you should use thenoencoption when loadingtipa, like it says in section 3.1.1 of the documentation. But in any case\dhshould be available even outsidetextipaand theIPAenvironment (it is Input 1); withintipayou can useDand that's enough:\textipa{D}– jja Aug 16 '13 at 18:38