Convertendo um código de duas colunas do beamer em um que funcione em uma classe de documento `article` normal?

Convertendo um código de duas colunas do beamer em um que funcione em uma classe de documento `article` normal?

Atualmente, tenho um código escrito para beameralinhar duas colunas para que eu possa exibir os resultados lado a lado. Isso é:

\documentclass{beamer}

\begin{document}

\begin{frame}[t]{Title}
\begin{columns}[t, onlytextwidth] % align columns
\column{.4\textwidth}
\textbf{First Entry}
$X, Y$
\medskip
\textbf{Second Entry}
$Z, W$
\medskip
\textbf{Third Entry}
\column{.55\textwidth}
Here is text corresponding to the equations in the left.
\end{columns}
\end{document}

Estou me perguntando como posso converter isso em uma articledocumentclass normal. Obrigado.

Responder1

Com minipáginas:

insira a descrição da imagem aqui

\documentclass{article}

\begin{document}


\noindent
\begin{minipage}[t]{.4\textwidth}
\textbf{First Entry}
$X, Y$

\medskip
\textbf{Second Entry}
$Z, W$

\medskip
\textbf{Third Entry}
\end{minipage}
\hfill
\begin{minipage}[t]{.55\textwidth}
Here is text corresponding to the equations in the left.
\end{minipage}

\end{document}

informação relacionada