我怎样才能将一组方程式置于中心并在其中一个方程式下方画一条线?

我怎样才能将一组方程式置于中心并在其中一个方程式下方画一条线?

方程组

这是我需要实现的,最后一个等式有问题。我怎样才能像上面一样划线?我试过把它写成一个分数,但分子中的另一个分数变小了,等号与其他符号不一致。你能给出建议吗?

begin{eqnarray*}
\frac{2}{3}=0,66666\ 66667\ (-) \\
\frac{2}{3\cdot 3 \cdot 9}=0,02469\ 13580\ (+) \\
\frac{2}{3\cdot 5 \cdot 9^{2}}=0,00164\ 60905\ (+) \\
\frac{2}{3\cdot 7 \cdot 9^{3}}=0,00013\ 06421\ (+) \\
\frac{2}{3\cdot 9 \cdot 9^{4}}=0,00001\ 12901\ (-) \\
\frac{2}{3\cdot 11 \cdot 9^{5}}=0,00000\ 10264\ (-) \\
\frac{2}{3\cdot 13 \cdot 9^{6}}=0,00000\ 00965\ (-) \\
\frac{2}{3\cdot 15 \cdot 9^{7}}=0,00000\ 00093\ (-) \\
\end{eqnarray*}

这是代码,但不知道最后一部分是什么......

答案1

我会以常规方式构造它array,前提是构造不需要跨越页面边界。以下是这样的实现:

在此处输入图片描述

\documentclass{article}

\usepackage{array}

\begin{document}

\[
  \renewcommand{\arraystretch}{2.1}% http://tex.stackexchange.com/q/31672/5764
  \begin{array}{ >{\displaystyle}r @{} >{{}}l c}
                       \frac{2}{3} &= 0.66666\,66667 & (-) \\
       \frac{2}{3 \cdot 3 \cdot 9} &= 0.02469\,13580 & (+) \\
     \frac{2}{3 \cdot 5 \cdot 9^2} &= 0.00164\,60905 & (+) \\
     \frac{2}{3 \cdot 7 \cdot 9^3} &= 0.00013\,06421 & (+) \\
     \frac{2}{3 \cdot 9 \cdot 9^4} &= 0.00001\,12901 & (-) \\
    \frac{2}{3 \cdot 11 \cdot 9^5} &= 0.00000\,10264 & (-) \\
    \frac{2}{3 \cdot 13 \cdot 9^6} &= 0.00000\,00965 & (-) \\
    \frac{2}{3 \cdot 15 \cdot 9^7} &= 0.00000\,00093 & (-) \\[0.7\normalbaselineskip]
    \hline
                                   &= 0.69314\,71805
  \end{array}
\]

\end{document}

答案2

使用align*amsmath 的环境和一个简单的\cline表格

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

    \begin{align*}
    \frac{2}{3}                    &= 0.66666\,66667  ~(-) \\
    \frac{2}{3 \cdot 3 \cdot 9}    &= 0.02469\,13580  ~(+) \\
    \frac{2}{3 \cdot 5 \cdot 9^2}  &= 0.00164\,60905  ~(+) \\
    \frac{2}{3 \cdot 7 \cdot 9^3}  &= 0.00013\,06421  ~(+) \\
    \frac{2}{3 \cdot 9 \cdot 9^4}  &= 0.00001\,12901  ~(-) \\
    \frac{2}{3 \cdot 11 \cdot 9^5} &= 0.00000\,10264  ~(-)\\
    \frac{2}{3 \cdot 13 \cdot 9^6} &= 0.00000\,00965  ~(-)\\
    \frac{2}{3 \cdot 15 \cdot 9^7} &= 0.00000\,00093  ~(-)\\\cline{1-2}
                                   &= 0.69314\,71805
    \end{align*}

\end{document}

在此处输入图片描述

答案3

可能的起点:

\documentclass{article}
    \usepackage{array,siunitx}
    \usepackage{mathtools}

    \begin{document}
    \begin{center}
\begin{tabular}{>{$}c<{$}}
    \begin{aligned}
\frac{2}{3}                 & = \num{0,6666666667}\ (-)   \\
\frac{2}{3\cdot 3\cdot 9}   & = \num{0,0246913580}\ (+)   \\
\frac{2}{3\cdot 3\cdot 9^2} & = \num{0,0016460905}\ (+)   \\
\frac{2}{3\cdot 3\cdot 9^3} & = \num{0,0001306421}\ (+)   \\
\frac{2}{3\cdot 3\cdot 9^4} & = \num{0,0000112901}\ (-)   \\
\frac{2}{3\cdot 3\cdot 9^5} & = \num{0,0000010264}\ (-)   \\
\frac{2}{3\cdot 3\cdot 9^6} & = \num{0,0000000965}\ (-)   \\
\frac{2}{3\cdot 3\cdot 9^7} & = \num{0,0000000093}\ (-)   \\[1ex]
    \hline
                            & = \num{0,6931471805}
    \end{aligned}
\end{tabular}
    \end{center}
\end{document}

该包array用于确定能够对 3 中的数字进行分组的宏>{$}c<{$}。对于行,使用来自环境的标准。siunitx\num{...}\hlinetabular

在此处输入图片描述

相关内容