只需调整多行数学公式的大小

只需调整多行数学公式的大小

我在尝试非常简单地调整多行数学方程的大小时遇到​​了困难和沮丧。我有以下代码:

\begin{gather}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather}

这很好,并且位于页面中央。但是,现在基于此,我只想让PDF 上的方程式,较大并对此进行控制。

我该怎么做?谢谢。

答案1

gather*您可以使用标准命令删除方程编号并更改大小。

代码:

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\large
\begin{gather*}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather*}

\Large
\begin{gather*}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather*}

\huge
\begin{gather*}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather*}

\Huge
\begin{gather*}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather*}
\end{document}

产量:

在此处输入图片描述

答案2

不确定你的意思使公式在 PDF 上呈现得更大,但它就在这里。

\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{environ}
\usepackage{lipsum} % for context

\NewEnviron{gather+}[1][1]{%
  \begin{equation*}
  \scalebox{#1}{$\begin{gathered}\BODY\end{gathered}$}
  \end{equation*}
}

\begin{document}

\lipsum*[2]
\begin{gather+}
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather+}
\lipsum*[2]
\begin{gather+}[1.5]
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather+}
\lipsum*[2]
\begin{gather+}[0.7]
f(y) = a \cdot k^{y} \\
\theta = 0
\end{gather+}
\lipsum*[2]

\end{document}

在此处输入图片描述

相关内容