答案1
\^{\textPi}
不幸的是,这个构造无法工作。这里有一个解决方法:
\documentclass{book}
\usepackage{textgreek}
\DeclareRobustCommand{\greekhat}[1]{%
\leavevmode
\vbox{\offinterlineskip
\ialign{%
\hfil##\hfil\cr
\^{}\cr
\noalign{\kern-1ex}
#1\cr
}%
}%
}
\begin{document}
\chapter{A title with \greekhat{\textPi}}
And a \greekhat{\textPi} in text.
\end{document}
您确定不想在数学模式下使用它吗$\hat{\Pi}$
?
在我看来,标题中不应该加粗数学,但你可以做到。
\documentclass{book}
\usepackage{amsmath,bm}
\begin{document}
\chapter{A title with $\bm{\hat{\Pi}}$ or $\hat{\Pi}$}
And a $\hat{\Pi}$ in math as well.
\end{document}