Estou tentando criar uma coluna à esquerda lado a lado com outra coluna à direita. A coluna à esquerda é rotulada “Exemplos de termos semelhantes:” e a coluna à direita é rotulada “Exemplos de termos diferentes:”
Aqui está meu trabalho até agora:
\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}
Resposta
Use o ambiente 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}
Comentários
- Observação: se houver linhas em branco acima e abaixo de
\hfill
, ele não produz o resultado esperado (depurei isso por mais de uma hora. Eu inseri linhas em branco para fazer parecia mais limpo, ' não sabia que importava) - @GaurangTandon, linhas em branco produzirão novos parágrafos, então o resultado não é o mesmo. Se você quiser linhas vazias apenas para tornar o código mais claro, insira um único
%
apenas. - Oh, obrigado, não fiz ' t sei disso. Então, devo inserir
%
no lugar do início da linha? - @GaurangTandon, para ignorar essa linha, sim.
- Como você faria isso se tivesse um eqnarray * à direita na minipágina? Parece ignorar o flushright?
Resposta
Não tenho certeza se esta é a melhor maneira de apresentar os dados. No entanto, você pode usar 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}