¿Cómo colocaría uncentrado¿Regla vertical que separa dos regiones de texto en un entorno displaymath? El efecto que quiero se describe a continuación. ¡Gracias!
\[
3x + 2 = 6 | x + 5 = 7
-2 = -2 | -5 = -5
3x = 4 | x = 2
x = 4/3 |
\]
Respuesta1
Aquí hay un 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}
En el ejemplo anterior, implemento un entorno tabular. También puede utilizar una versión de matriz o de varias columnas para crear el mismo resultado.
Respuesta2
Sin tabular:
\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}
Esto también funciona
\[
\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}
\]