如何对齐方程式而不考虑文档边距?

如何对齐方程式而不考虑文档边距?

我设置了的边距,document但是如果我写了一个太长的方程式,仅使用$$...$$align*equation*aligned环境将方程式居中,但是从左边距开始。

所以问题是,如何仅考虑文档的宽度而不考虑边距来使方程居中?

这是我的 MWE:

\documentclass{article}
\usepackage{amsmath}
\usepackage{vmargin}

\setpapersize{A4}
\setmargins{2.2cm}
{0.5cm}
{16.5cm}
{23.42cm}               
{30pt}
{1cm}
{0pt}
{2cm}   

\begin{document}

% With $$...$$ there is less spacing. I definitely do not want to use this option.
$$
a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
$$

% With equation* and aligned environments space properly, but center from the left margin.
\begin{equation*}
    \begin{aligned}
        a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
    \end{aligned}
\end{equation*}

% With align* environment it is the same as with equation* and aligned environments.
\begin{align*}
    a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
\end{align*}

\end{document}

结果是:

写方程式的方法多种多样,但都行不通。

谢谢!

答案1

这并不能直接解决边距问题,但是为了使等式足够短以适合您的边距,您可以考虑使用包\mathclap中的mathtools内容(应该使用它来代替,而不是除了amsmath)。

还请注意,您应该使用\[..\]而不是$$..$$此处解释。

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\usepackage{vmargin}

\setpapersize{A4}
\setmargins{2.2cm}
{0.5cm}
{16.5cm}
{23.42cm}               
{30pt}
{1cm}
{0pt}
{2cm}   

\begin{document}

\[
a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_%
    {\mathclap{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}}%
    1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_%
    {\mathclap{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}}}%
    \dfrac{n(n-1)}{2!}h^2.
\]

\end{document}

答案2

在页边空白处设置文字或公式通常不是解决办法。这里我介绍一种展示论点的不同方法。

一些重要细节:避免使用vmargin,它与其他几个软件包不兼容,尤其是 TikZ。使用 可以更清楚地获得相同的设置geometry。该showframe选项仅用于绘制说明页面设置的线条。在最终版本中将其删除。

\documentclass{article}
\usepackage{amsmath}
\usepackage[
  showframe,
  a4paper,
  includehead,
  left=2.2cm,
  top=0.5cm,
  textwidth=16.5cm,
  textheight=23.42cm,
  heightrounded,
  headheight=30pt,
  headsep=1cm,
  footskip=2cm,
]{geometry}

\newcommand{\eqdesc}[1]{%
  \text{\footnotesize\begin{tabular}{@{}l@{}}#1\end{tabular}}%
}

\begin{document}

\begin{align*}
a_n=\sqrt[n]{n}=1+h
\implies
n &= (1+h)^n \\
  &= 1+nh+\frac{n(n-1)}{2!}h^2+\dots+h^n
&& \eqdesc{Por binomio de Newton\\(Ver \textbf{OBSERVACI\'ON})} \\
  &\geq \frac{n(n-1)}{2!}h^2.
&& \eqdesc{Como todos los sumandos son\\positivos, se puede acotar\\
           inferiormente con uno solo\\de ellos}
\end{align*}

\end{document}

在此处输入图片描述

答案3

它不是很整洁,也不是自动的,但您可以使用“\hspace*”强制方程式向左移动。如果有多个宽方程式,则所有宽方程式都需要这种处理。尝试使用这些值,直到看起来没问题。

\documentclass{article}
\usepackage{amsmath}
\usepackage{vmargin}

\setpapersize{A4}
\setmargins{2.2cm}
{0.5cm}
{16.5cm}
{23.42cm}               
{30pt}
{1cm}
{0pt}
{2cm}   

\begin{document}

% With $$...$$ there is less spacing. I definitely do not want to use this option.
$$
\hspace*{-8mm}
a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
$$

% With equation* and aligned environments space properly, but center from the left margin.
\begin{equation*}
    \hspace*{-11mm}
    \begin{aligned}
        a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
    \end{aligned}
\end{equation*}

% With align* environment it is the same as with equation* and aligned environments.
\begin{align*}
    \hspace*{-11mm}
    a_n=\sqrt[n]{n}=1+h\Rightarrow n={(1+h)}^n\underbrace{=}_{\substack{\text{Por binomio de Newton}\\\text{(Ver \textbf{OBSERVACI\'ON})}}}1+nh+\dfrac{n(n-1)}{2!}h^2+\cdots +h^n\underbrace{\geq}_{\substack{\text{Como todos los sumandos son}\\\text{positivos, se puede acotar}\\\text{inferiormente con uno solo}\\\text{de ellos}}} \dfrac{n(n-1)}{2!}h^2.
\end{align*}

\end{document}

相关内容