左側に1つの列を作成し、右側に別の列を作成しようとしています。左側の列には「類似用語の例:」というラベルが付けられ、右側の列には「異なる用語の例:」というラベルが付けられています。

これまでの作業は次のとおりです:

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

回答

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} 

ここに画像の説明を入力

コメント

  • 注:\hfillの上下に空白行がある場合、期待どおりの結果が得られません(1時間以上デバッグしました。空白行を挿入して作成しました)見た目はすっきりしていて、'重要だとは知りませんでした)
  • @GaurangTandon、空白行は新しい段落を生成するため、結果は同じではありません。コードをわかりやすくするためだけに空の行が必要な場合は、%を1つだけ挿入してください。
  • ああ、ありがとうございます'それを知らない。では、行の先頭の代わりに%を挿入しますか?
  • @GaurangTandon、その行を無視します。
  • ミニページの右側にeqnarray *がある場合、これをどのように行いますか?フラッシュライトを無視しているようですか?

回答

これが提示するのに最適な方法かどうかわかりませんデータ。ただし、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} 

画像の説明を入力してくださいここ

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です