排版更宽的条形符号

排版更宽的条形符号

我怎样才能让栏稍微宽一点?!可以不定义任何新命令就做到这一点吗?以下是我想在其上排版更宽栏的条目的屏幕截图。

在此处输入图片描述

答案1

您可以使用 Hendrik Vogt 的代码来回答类似问题,或者使用\widebar来自 的命令mathabx

以下是无需加载包即可使用它的方法:

    \documentclass[12pt, a4paper]{article}

\DeclareFontFamily{U}{mathx}{\hyphenchar\font45}
\DeclareFontShape{U}{mathx}{m}{n}{
      <5> <6> <7> <8> <9> <10>
      <10.95> <12> <14.4> <17.28> <20.74> <24.88>
      mathx10
      }{}
\DeclareSymbolFont{mathx}{U}{mathx}{m}{n}
\DeclareFontSubstitution{U}{mathx}{m}{n}
\DeclareMathAccent{\widebar}{0}{mathx}{"73}

    \begin{document}

 \[ \overline{a_{ij}a_{jk}}\quad \widebar{a_{ij}a_{jk}} \]

 \[ \overline{A_{ij}}\quad \widebar{A_{ij}} \]


    \end{document}

在此处输入图片描述

相关内容