Yritän luoda yhden sarakkeen vasemmalle vierekkäin ja toisen sarakkeen oikealle. Vasemmanpuoleisen sarakkeen otsikko on ”Esimerkkejä samankaltaisista termeistä:” ja oikealla olevasta sarakkeesta ”Esimerkkejä toisin kuin termeistä”:
Tässä on tähän mennessä tekemäni työ:
\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}
Vastaus
Käytä minipage
-ympäristöä:
\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}
kommentit
- Huomaa: jos
\hfill
-kohdan ylä- ja alapuolella on tyhjiä rivejä, se ei tuota odotettua tulosta (debugoi tätä yli tunnin ajan. Olin lisännyt tyhjiä rivejä se näyttää puhtaammalta, ei ' tiennyt sen merkitystä) - @GaurangTandon, tyhjät rivit tuottavat uusia kappaleita, joten tulos ei ole sama. Jos haluat tyhjät rivit vain koodin selkeyttämiseksi, lisää vain yksi
%
. - Voi kiitos, en ' t tiedä sitä. Joten lisätään
%
rivin alun sijasta? - @GaurangTandon, ohittaa kyseisen rivin, kyllä.
- Kuinka tekisit tämän, jos sinulla olisi eqnarray * oikealla minisivulla? Näyttää siltä, että se jättää huomiotta flushright-oikeuden?
Vastaa
En ole varma, että tämä on paras tapa esittää tietoja. Voit kuitenkin käyttää 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}