
Tengo un texto como el siguiente y necesito convertirlo a látex.
Utilicé el siguiente código de látex para crearlo.
\begin{center}
\begin{tabular}{ cc}
PIXELS: & \shortstack{ (00100111 11101001 11001000) \\
(00100111 11001000 11001001) \\
(11001000 00100111 11101001) }\\ \\
240: & 011110000 \\ \\
RESULT: & \shortstack{(00100110 11101001 11001001)\\
(00100111 11001001 11001000)\\
(11001000 00100110 11101000) }\\
\end{tabular}
\end{center}
pero la salida es así
Necesito ayuda de un experto para corregir este formato.
Respuesta1
\begin{tabular}{ lll}
PIXELS& : & (00100111 11101001 11001000) \\
&& (00100111 11001000 11001001) \\
&& (11001000 00100111 11101001) \\
240&: & 011110000 \\
RESULT&: & (00100110 11101001 11001001)\\
&& (00100111 11001001 11001000)\\
&& (11001000 00100110 11101000) \\
\end{tabular}
para reducir aún más el espacio de la columna, reemplace con
\begin{tabular}{ l@{}ll}
para agregar espacio entre filas adicional
\begin{tabular}{ l@{}ll}
PIXELS& : & (00100111 11101001 11001000) \\
&& (00100111 11001000 11001001) \\
&& (11001000 00100111 11101001) \\
&&\\
240&: & 011110000 \\
&&\\
RESULT&: & (00100110 11101001 11001001)\\
&& (00100111 11001001 11001000)\\
&& (11001000 00100110 11101000) \\
\end{tabular}