Snažím se vytvořit jeden sloupec nalevo vedle sebe s jiným sloupcem napravo. Sloupec vlevo je označen „Příklady podobných výrazů:“ a sloupec vpravo je označen „Příklady podobných výrazů:“
Zde je zatím moje práce:
\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}
Odpověď
Použijte prostředí 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}
Komentáře
- Poznámka: pokud jsou nad a pod
\hfill
prázdné řádky, nepřináší očekávaný výsledek (ladil jsem to déle než hodinu. Vložil jsem prázdné řádky, aby vypadá to čistěji, ' nevím, že na tom záleží) - @GaurangTandon, prázdné řádky vytvoří nové odstavce, takže výsledek není stejný. Pokud chcete prázdné řádky, aby byl kód jasnější, vložte pouze jeden
%
. - Ach, děkuji ' to nevím. Takže vložím
%
na začátek řádku? - @GaurangTandon, abych tento řádek ignoroval, ano.
- Jak byste to udělali, kdybyste měli na minipage vpravo eqnarray *? Zdá se, že ignoruje flushright?
Odpověď
Nejsem si jist, zda je to nejlepší způsob, jak prezentovat data. Můžete však použít 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}