创建一个更粗的(粗体) \bar

创建一个更粗的(粗体) \bar

这是我的 MWE,其中嵌入了我的问题:

\documentclass[12pt]{article}

\usepackage{amsmath}
\begin{document}
The bar over the $E$ in $\bar E$ is a little too faint for my
taste. Or should I just go with the default?
\end{document}

我对长度没意见,所以不需要答案\bar 和 \overline 命令

答案1

您可以使用粗体栏:

\documentclass[12pt]{article}

\usepackage{amsmath}

%%% For the example we keep the old \bar
\let\oldbar\bar % this is not necessary in the real application

%%% Define a new math font
\DeclareSymbolFont{boldoperators}{OT1}{cmr}{bx}{n}
\SetSymbolFont{boldoperators}{bold}{OT1}{cmr}{bx}{n}
\edef\bar{\unexpanded{\protect\mathaccentV{bar}}\number\symboldoperators16}

\begin{document}

$\oldbar{E}\bar{E}$

{\boldmath$\oldbar{E}\bar{E}$}

\end{document}

这是基于被\bar重新定义为amsmath扩展为

\protect\mathaccentV{bar}016

其中0是符号所取自的数学组。我们重新定义它以使用新分配的符号字体。

在此处输入图片描述

相关内容