将投影仪双列代码转换为可在普通“文章”文档类中工作的代码?

将投影仪双列代码转换为可在普通“文章”文档类中工作的代码?

我目前有一段代码,用于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文档类。谢谢。

答案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}

相关内容