如何将等式中的字母设置为小写和粗体

如何将等式中的字母设置为小写和粗体

我想将“\widehat{\mathbf{x}}”部分设置得更小,但我不知道该怎么做。任何建议都将不胜感激。

\documentclass[12pt]{article} 
\usepackage{amsmath}
\begin{document}
\section{one}

\[
\mathbf{A}\cdot \widehat{\mathbf{x}}
\]

\end{document}

答案1

\documentclass{article}
\usepackage{amsmath}
\newcommand{\smallmath}[1]{%
  {\scriptstyle#1}%
}

\begin{document}
$\mathbf{A}\widehat{\mathbf{x}}$ is different from $\mathbf{A}\smallmath{\widehat{\mathbf{x}}}$
\end{document}

但结果令人非常失望,正如我所确信的:没有读者会欣赏其中的差异。

在此处输入图片描述

如果从 改为 ,\scriptstyle情况\scriptscriptstyle会更糟:

在此处输入图片描述

答案2

您可以尝试使用中的\medmath(80% \displaystylenccmath,这更容易接受:

\documentclass[12pt]{article}
\usepackage{amsmath, nccmath}
\begin{document}

\[
\mathbf{A}\cdot \widehat{\mathbf{x}}\qquad\mathbf{A}\cdot \medmath{\widehat{\mathbf{x}}} \qquad\mathbf{A}\cdot {\scriptstyle\widehat{\mathbf{x}}}
\]

\end{document} 

在此处输入图片描述

相关内容