如何删除对齐中的垂直间距

如何删除对齐中的垂直间距

我想要这样的东西:

在此处输入图片描述

我的代码

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent Et pour tout $x$ de $\left [ \alpha, 1 \right ]$ on a : 
        \begin{align*}
            \left ( 2x-x\ln x \right )'&=2-\left ( 1 \times \ln x +x \times \ln x \right )\\
            &=2-\ln x -1\\
            &=1-\ln x
        \end{align*}
D'où $x \mapsto 2x-x\ln x$ est une primitive de la fonction $x \mapsto 1-\ln x$ sur $\left [ \alpha, 1 \right ]$.
\end{document}

给我一些类似的东西

在此处输入图片描述

我希望我的方程式从文本行开始,而不是之后。

我认为“对齐”末尾的垂直间距太大

答案1

您可以使用[t]op-alignedarrayaligned环境:

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\noindent
Et pour tout $x$ de $[ \alpha, 1]$ on a: 
$\begin{array}[t]{ @{} r @{} l @{} }
  ( 2 x - x \ln x )' & {} = 2 - ( 1 \times \ln x + x \times \ln x ) \\[\jot]
                     & {} = 2 - \ln x - 1                           \\[\jot]
                     & {} = 1 - \ln x
\end{array}$

D'où $x \mapsto 2 x - x \ln x$ est une primitive de la fonction $x \mapsto 1 - \ln x$ sur $[ \alpha, 1 ]$.

\noindent
Et pour tout $x$ de $[ \alpha, 1]$ on a: 
$\begin{aligned}[t]
  ( 2 x - x \ln x )' &= 2 - ( 1 \times \ln x + x \times \ln x ) \\
                     &= 2 - \ln x - 1                           \\
                     &= 1 - \ln x
\end{aligned}$

D'où $x \mapsto 2 x - x \ln x$ est une primitive de la fonction $x \mapsto 1 - \ln x$ sur $[ \alpha, 1 ]$.

\end{document}

答案2

您可以使用 TABstack,特别是\alignLongunderstack

\documentclass{article}
\usepackage{amsmath,tabstackengine}
\strutlongstacks{T}
\TABstackMath
\begin{document}
\noindent Et pour tout $x$ de $\left [ \alpha, 1 \right ]$ on a : 
        \alignLongunderstack{
            \left ( 2x-x\ln x \right )'&=2-\left ( 1 \times \ln x +x \times \ln x \right )\\
            &=2-\ln x -1\\
            &=1-\ln x
        }\\
D'où $x \mapsto 2x-x\ln x$ est une primitive de la fonction $x \mapsto 1-\ln x$ sur $\left [ \alpha, 1 \right ]$.
\end{document}

在此处输入图片描述

答案3

您可以使用对齐的环境:

\documentclass{article}
\usepackage{amsmath}

\setlength{\parindent}{0cm}

\begin{document}
    Et pour tout $x$ de $\left[ \alpha, 1 \right]$ on a: $\begin{aligned}[t]
    \left( 2x-x\ln x \right)'&=2-\left( 1 \times \ln x +x \times \ln x \right)\\
    &=2-\ln x -1\\
    &=1-\ln x
    \end{aligned}$

    D'où $x \mapsto 2x-x\ln x$ est une primitive de la fonction $x \mapsto 1-\ln x$ sur $\left[\alpha, 1 \right]$.
\end{document}

在此处输入图片描述

相关内容