Sto cercando di creare una colonna a sinistra affiancata con unaltra colonna a destra. La colonna a sinistra è etichettata “Esempi di termini simili:” e la colonna a destra è etichettata “Esempi di termini diversi:”

Ecco il mio lavoro fino ad ora:

\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} 

Risposta

Utilizza lambiente 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} 

inserisci qui la descrizione dellimmagine

Commenti

  • Nota: se ci sono righe vuote sopra e sotto \hfill, non produce il risultato atteso (ho eseguito il debug per più di unora. Avevo inserito righe vuote per sembra più pulito, ' non sapevo che fosse importante)
  • @GaurangTandon, le righe vuote produrranno nuovi paragrafi, quindi il risultato non è lo stesso. Se desideri righe vuote solo per rendere il codice più chiaro, inserisci un solo %.
  • Oh, grazie non ho ' t lo so. Quindi inserisco % al posto dellinizio della riga?
  • @GaurangTandon, per ignorare quella riga, sì.
  • Come lo faresti se avessi un eqnarray * a destra nella minipage? Sembra che ignori il flushright?

Answer

Non sono sicuro che questo sia il modo migliore per presentare i dati. Tuttavia puoi utilizzare 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} 

inserisci la descrizione dellimmagine qui

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *