指数中的多个数学重音

指数中的多个数学重音
  • 如何防止堆叠重音符号出现偏移(帽子不在波浪符号的中间)
  • 并且我怎样才能排版下面例子中的指数“a”,使其不太高且不太靠近波浪号?

在此处输入图片描述

为了您的方便,我使用的代码如下:

\documentclass[a4paper,11pt]{article}
\usepackage{amsthm,amsfonts}
\begin{document}
  $$ \hat{\widetilde{A}}^a $$
\end{document}

答案1

对于第一个问题,要么按照 egreg 建议的那样使用\tilde\widetilde不是,要么在字母前放一个空组:

\hat{\widetilde{{}A}}

不过我强烈建议你使用\widehatwith \widetilde。为了说明

\begin{equation*}
  \hat{\tilde{A}} \qquad
  \hat{\widetilde{{}A}} \qquad
  \widehat{\widetilde{{}A}}
\end{equation*}

生产

样品帽子

对于第二个问题,egreg 的方法将为您提供所需高度的上标。对于的情况,\widetilde您可以再次在上标前添加一个空组,或者更一般地添加一个\vphantom

\begin{equation*}
  \hat{\tilde{A}}^{a} \qquad
  \widehat{\widetilde{{}A}}{}^{a} \qquad
  \widehat{\widetilde{{}A}}\vphantom{A}^{a}
\end{equation*}

示例输出

所有图像均来自以下文档。请注意,我还加载了amsmath

\documentclass[a4paper,11pt]{article}

\usepackage{amsthm,amsfonts,amsmath}

\begin{document}

\begin{equation*}
  \hat{\tilde{A}} \qquad
  \hat{\widetilde{{}A}} \qquad
  \widehat{\widetilde{{}A}}
\end{equation*}

\begin{equation*}
  \hat{\tilde{A}}^{a} \qquad
  \widehat{\widetilde{{}A}}{}^{a} \qquad
  \widehat{\widetilde{{}A}}\vphantom{A}^{a}
\end{equation*}

\end{document}

答案2

一些肮脏的手段,只是为了刺激更好的反应。

\documentclass[a4paper,11pt]{article}
\usepackage{amsthm,amsfonts}
\begin{document}
  \[ \hat{\widetilde{A}\,\,}^{\!\raisebox{-.5ex}{$\scriptstyle a$}} \]
  or
   \[ \hat{\tilde{A}\;}^{\hspace{-.15em}\raisebox{-.3ex}{$\scriptstyle a$}} \]
\end{document}

在此处输入图片描述

相关内容