My aim is to put tone marks above Chinese characters in latex.
I have tried \v{好}, but this puts the carron accent (3rd tone) in the space left of the character rather than above it.
I have also found that $\stackrel{\vee}{\textrm{你}}$ works well but cannot find equivelent symbols for the other tones. I have tried --, \diagup and \diagdown, but they look really out of place
The standard unicode symbols for the tones are 02C9, 02CA, 02C7, 02CB and 02D9, but think that these are the same as using \v ect.
Does anyone have any suggestions? Thank-you. The purpose of this is to have them automatically generated to help people learning chinese. I've written the software for that, so just need to output it in a nice format.
P.S. To use Chinese characters in Latex
\documentclass[12p]{article}
\usepackage{CJKutf8}
\begin{document}
\begin{CJK*}{UTF8}{gbsn}
你
\end{CJK*}
\end{document}
