如何对齐数学公式等文本?

如何对齐数学公式等文本?

代码在这里:

\noindent
\textit{Pf} Let $G(x)=\displaystyle\int_{a}^{x} f(t) d t$. 

By (1), $G^{\prime}(x)=f(x)$, therefore $(G-F)^{\prime}(x)=0 $ $\forall x \in[a, b]$. 

$\Rightarrow$ $(G-F)(x)=const$.

Let $(G-F)(x)=c$ $\forall x \in[a, b]$, then $F(b)-F(a)=G(b)-G(a)=\int_{a}^{b} f(t) d t$. 

我想将第一行“Let”中的“L”与第二行“By”中的“B”对齐。我尝试\hspace生成一些空白,但效果不佳。(没有像“widthof”这样的函数,所以我无法生成具有适当宽度的空白。)我知道在数学环境中我可以使用&对齐,但我不知道如何对纯文本做类似的事情。

答案1

您可以设置血红蛋白在与 有同样宽度的盒子里面\parindent

在此处输入图片描述

\documentclass{article}

\begin{document}

\noindent
\makebox[\parindent][l]{\textit{Pf} }Let $G(x) = \int_a^x f(t) \mathrm{d}t$. 

By (1), $G^\prime(x) = f(x)$, therefore $(G - F)^\prime(x) = 0 ~ \forall x \in[a, b]$. 

$\Rightarrow$ $(G - F)(x) = \mathrm{const}$.

Let $(G - F)(x) = c ~ \forall x \in[a, b]$, then $F(b) - F(a) = G(b) - G(a) = \int_a^b f(t) \mathrm{d}t$. 

\end{document}

答案2

您也可以使用proof来自的环境。如果您正在排版数学,amsthm我还建议您查看该包。amsmath

\documentclass{article}

\usepackage{amsmath, amsthm}


\begin{document}

\begin{proof}
  Let $G(x) =\int_{a}^{x} f(t) \, d t$.
  
  By (1), $G'(x)=f(x)$, therefore $(G-F)'(x) = 0$
  $\forall x \in[a, b]$.
  
  $\implies (G-F)(x) = \text{const}$.

  Let $(G-F)(x)=c$ $\forall x \in[a, b]$, then
  $F(b)-F(a)=G(b)-G(a) = \int_{a}^{b} f(t) \, d t$.
\end{proof}

\end{document}

答案3

您可以使用以下tabular环境:

\documentclass{article}
\begin{document}

\begin{tabular}{ll}
        \textit{Pf}& Let $G(x)=\displaystyle\int_{a}^{x} f(t) d t$. \\
    &   By (1), $G^{\prime}(x)=f(x)$, therefore $(G-F)^{\prime}(x)=0 $ $\forall x \in[a, b]$.\\ 
    &   $\Rightarrow$ $(G-F)(x)=const$.\\
    &   Let $(G-F)(x)=c$ $\forall x \in[a, b]$, then $F(b)-F(a)=G(b)-G(a)=\int_{a}^{b} f(t) d t$. 
\end{tabular}   
    
\end{document}

相关内容