答案1
我不会担心高度,而是使用\bar
。\overline
比较下面的结果:奇数行没有调整,偶数行必须\vphantom{b}
提高标准;前两行使用\overline
,接下来的几行使用\bar
。
\documentclass[twocolumn]{article} % twocolum just for a smaller picture
\usepackage{amsmath}
\begin{document}
\begin{gather}
\overline{a}+\overline{b} \\
\overline{a\vphantom{b}}+\overline{b} \\
\bar{a}+\bar{b} \\
\bar{a\vphantom{b}}+\bar{b}
\end{gather}
\end{document}