Using XeLaTeX, this piece of code produces:
\documentclass{article}
\usepackage[tone]{tipa}
\begin{document}
\textipa{
j\textturna u\tone{12}
}
\end{document}
However, the the tone bar is broken when xeCJK package is added in:
\documentclass{article}
\usepackage[tone]{tipa}
\usepackage{xeCJK}
\begin{document}
\textipa{
j\textturna u\tone{12}
}
\end{document}
and a warning message is given:
LaTeX Font Warning: Font shape `T3/lmr/m/n' undefined
(Font) using `T3/cmr/m/n' instead
(Font) for symbol `textturna' on input line 21.
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
Adding in inputenc or fontenc does not seem to fix this problem. I think there is a font conflict but I am not sure how to restore the "original" tipa font.


