В настоящее время у меня есть код, который написан для beamer
выравнивания двух столбцов, чтобы я мог отображать результаты рядом. Это:
\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}
Мне интересно, как мне преобразовать это в обычный article
documentclass. Спасибо.
решение1
С мини-страницами:
\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}