Actualmente tengo un código escrito que beamer
alinea dos columnas para poder mostrar los resultados uno al lado del otro. Es:
\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}
Me pregunto cómo puedo convertir esto en una article
clase de documento normal. Gracias.
Respuesta1
Con minipáginas:
\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}