비머 2열 코드를 일반 '기사' 문서 클래스에서 작동하는 코드로 변환하시겠습니까?

비머 2열 코드를 일반 '기사' 문서 클래스에서 작동하는 코드로 변환하시겠습니까?

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}

관련 정보