我怎样才能分别改变两个方程的字体大小?
\begin{eqnarray}
\begin{split}
% Change the font size
r_j &= 2 \\
&\quad + 4
\end{split}
\\
% Change the font size
r_j = 2 + 4
\end{eqnarray}
我尝试了 \scalebox 但出现了一些错误。我尝试:
\begin{eqnarray}
\scalebox{.95}{
\begin{split}
r_j &= 2 \\
&\quad + 4
\end{split}
}
\\
\scalebox{.95}{
r_j = 2 + 4}
\end{eqnarray}
答案1
一些评论
的第二个参数
\scalebox
默认是文本模式,如果要当做数学材料,需要把数学材料用$
符号括起来。您不能
split
在比例尺盒内拥有环境。但是,aligned
环境可以工作。环境
eqnarray
是严重贬低。不要使用它!!相反,使用align
或gather
。在下面的代码中,我使用gather
环境,因为在基于 的示例中似乎没有执行任何对齐eqnarray
。
\documentclass{article}
\usepackage{amsmath} % for "gather" and "aligned" environments
\usepackage{graphicx} % for "\scalebox" macro
\begin{document}
\begin{gather}
\scalebox{1.33}{$
\begin{aligned}
r_j &= 2 \\
&\quad + 4
\end{aligned}$} \\
\scalebox{.75}{$
r_j = 2 + 4$}
\end{gather}
\end{document}