顯示數學中的居中垂直規則

顯示數學中的居中垂直規則

我將如何放置一個居中在顯示數學環境中分隔兩個文字區域的垂直規則?我想要的效果如下所述。謝謝!

\[
    3x + 2 = 6     | x + 5 = 7
    -2 = -2        |    -5 = -5
    3x = 4         | x = 2
    x = 4/3        |  
\]

答案1

這是一個 MWE:

在此輸入影像描述

\documentclass[letterpaper]{article}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{l|l}
    $\begin{aligned}
    3x + 2 &= 6\\   
    -2 &= -2    \\    
    3x &= 4  \\       
    x &= 4/3  \\ 
    \end{aligned}$  &  
    $\begin{aligned}
    3x + 2 &= 6\\   
    -2 &= -2    \\    
    3x &= 4  \\       
    x &= 4/3  \\ 
    \end{aligned}$
\end{tabular}
\end{document}

在上面的範例中,我實作了一個表格環境。您也可以使用陣列或多列版本來建立相同的結果。

答案2

沒有表格:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
    \begin{aligned}
    3x + 2 &= 6\\
    -2 &= -2    \\
    3x &= 4  \\
    x &= 4/3  \\
    \end{aligned} \quad \vrule \quad
    \begin{aligned}
    3x + 2 &= 6\\
    -2 &= -2    \\
    3x &= 4  \\
    x &= 4/3  \\
    \end{aligned}
\end{gather*}
\end{document}

在此輸入影像描述

這也有效

\[
    \begin{aligned}
    3x + 2 &= 6\\
    -2 &= -2    \\
    3x &= 4  \\
    x &= 4/3  \\
    \end{aligned} \quad \vrule \quad
    \begin{aligned}
    3x + 2 &= 6\\
    -2 &= -2    \\
    3x &= 4  \\
    x &= 4/3  \\
    \end{aligned}
\]

相關內容