왼쪽에 하나의 열을 만들고 오른쪽에 다른 열을 만들려고합니다. 왼쪽 열에는 “유사 용어의 예 :”라는 레이블이 지정되고 오른쪽 열에는 “비슷한 용어의 예 :”레이블이 지정됩니다.
지금까지 내 작업은 다음과 같습니다.
\documentclass{article} \usepackage{gensymb} \usepackage{amsfonts} \usepackage{amsmath} \begin{document} \title{Algebra} \maketitle \section{Like Terms} \begin{flushleft} \textbf{Examples of like terms:} \\ $3x$ and $5x$ \\ $4y^2$ and $9y^2$ \\ $7xy$ and $3xy$ \\ $6$ and $15$ \end{flushleft} \begin{flushright} \textbf{Examples of unlike terms:} \\ $2x$ and $8y$ \\ $4t^2$ and $4t^3$ \\ $x^2y$ and $xy^2$ \\ $12$ and $12x$ \end{flushright} \end{document}
답변
minipage
환경 사용 :
\documentclass{article} \begin{document} \title{Algebra} \maketitle \begin{minipage}{.45\linewidth} \begin{flushleft} \textbf{Examples of like terms:} \\ $3x$ and $5x$ \\ $4y^2$ and $9y^2$ \\ $7xy$ and $3xy$ \\ $6$ and $15$ \end{flushleft} \end{minipage} \hfill \begin{minipage}{.45\linewidth} \begin{flushright} \textbf{Examples of unlike terms:} \\ $2x$ and $8y$ \\ $4t^2$ and $4t^3$ \\ $x^2y$ and $xy^2$ \\ $12$ and $12x$ \end{flushright} \end{minipage} \end{document}
댓글
- 참고 :
\hfill
위와 아래에 빈 줄이 있으면 예상 한 결과를 얻지 못합니다 (한 시간 이상이 문제를 해결했습니다. 빈 줄을 삽입하여 더 깔끔해 보이지만 ' 중요한 줄 몰랐습니다.) - @GaurangTandon, 빈 줄은 새 단락을 생성하므로 결과는 동일하지 않습니다. 코드를 더 명확하게하기 위해 빈 줄을 원하면
%
하나만 삽입하세요. - 아, 감사합니다. ' 모르겠습니다. 그러면 줄의 시작 부분에
%
를 삽입해야합니까? - @GaurangTandon, 그 줄을 무시하려면 예.
- 미니 페이지 오른쪽에 eqnarray *가 있다면 어떻게할까요? 플러시 라이트를 무시하는 것 같습니까?
답변
이게 가장 좋은 방법인지 모르겠습니다. 그러나 tabular*
를 사용할 수 있습니다.
\documentclass{article} \begin{document} \section{Like Terms} \begin{center} % just for vertical spacing and killing indent \begin{tabular*}{\textwidth}{@{}l@{\extracolsep{\fill}}r@{}} \textbf{Examples of like terms:} & \textbf{Examples of unlike terms:} \\ $3x$ and $5x$ & $2x$ and $8y$ \\ $4y^2$ and $9y^2$ & $4t^2$ and $4t^3$ \\ $7xy$ and $3xy$ & $x^2y$ and $xy^2$ \\ $6$ and $15$ & $12$ and $12x$ \end{tabular*} \end{center} \end{document}