Próbuję utworzyć jedną kolumnę po lewej stronie, a drugą po prawej. Kolumna po lewej stronie jest oznaczona etykietą „Przykłady podobnych terminów:”, a kolumna po prawej stronie – „Przykłady odmiennych terminów:”
Oto moja dotychczasowa praca:
\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}
Odpowiedź
Użyj środowiska 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}
Komentarze
- Uwaga: jeśli istnieją puste linie powyżej i poniżej
\hfill
, nie daje to oczekiwanego wyniku (debugowałem to przez ponad godzinę. Wstawiłem puste wiersze, aby wygląda czysto, nie ' nie wiedziałem, że to ma znaczenie) - @GaurangTandon, puste linie spowodują utworzenie nowych akapitów, więc wynik nie jest taki sam. Jeśli chcesz, aby puste wiersze były bardziej przejrzyste, wstaw tylko jeden
%
. - Och, dziękuję, że nie ' wiem o tym. Czy zatem wstawić
%
w miejsce początku wiersza? - @GaurangTandon, aby zignorować tę linię, tak.
- Jak byś to zrobił, gdybyś miał tablicę eqnarray * po prawej stronie miniatury? Wygląda na to, że ignorujesz prawo flushright?
Odpowiedź
Nie jestem pewien, czy to najlepszy sposób prezentacji dane. Możesz jednak użyć 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}