我怎样才能在下标上加帽子?

我怎样才能在下标上加帽子?

我想在下标中放一顶帽子,像这样:

\documentclass{article}  
\begin{document}  
$x_\hat{z}$
\end{document}

不幸的是,这会导致错误。pdflatex> ! Missing { inserted.其他编译器也会产生类似的错误。我该如何修复这个问题?

答案1

解决办法很容易猜到:

\documentclass{article}  
\begin{document}  
$x_{\hat{z}}$
\end{document}  

我不得不承认我不明白为什么需要额外的花括号......

相关内容