
もっと正確に言えば、次のことをやりたいです。
右側に画像、左側に情報を配置したいのですが、wrapfigure
パッケージを使用してこれを実行しようとしましたが、これが最善の方法ではないと思います。これを実現するには、何をすればよいでしょうか?
編集:
画像を並べて、「エリア」とテーブルの間のテキストを最小化するにはどうすればよいでしょうか? 以下に画像を示します。
答え1
編集された回答 ( なし\tabular
) このアプローチでは、各サブセクションを特定の資料に合わせて調整できます。 そのため、 を\parbox
狭くして、2 つの図のためのスペースを確保し、垂直方向の範囲を拡大することができます。
注: この編集の下に元の回答を残しました。これは、画像と表がすべてページ上で均等に水平方向のスペースに割り当てられるという異なるアプローチであるためです。
\documentclass{article}
\parskip 1em\parindent 0ex
\begin{document}
\section{Geographic Information}
\textbf{Country Name:} The conventional long form ``The United States of
America'' and the conventional short form is ``U.S.'' or ``The U.S.'' or
``America'' or ``The States.''
Two other maps can be found in the appendix.
{\large\textbf{Area, Time Zone, Climate}}
\textbf{Area}
\parbox[b]{1.6in}{
Area of the United Sates is 9,826,675~m$^2$. The United States as a
percentage of Canada: 0.984\%. Ontario as a percentage of the United
States: 0.10\%
}
\hfill\rule{1.5in}{1in}\hfill\rule{1.5in}{1in}\\
\textbf{Time Zone}
\parbox[b]{2.3in}{
Due to the size of the U.S., numerous time zones will be discussed.
}
\hfill
\begin{tabular}{|l|l|}
\hline
America& Ottowa (12:00 PM)\\
CT & 11:00 A.M.\\
EST & 12:00 P.M.\\
MST & 10:00 A.M.\\
PST & 9:00 A.M.\\
\hline
\end{tabular}
\end{document}
オリジナルの回答( 付き\tabular
):
tabular
上のコメントで述べたことを使った 1 つの可能性を次に示します。
\documentclass{article}
\parskip 1em
\begin{document}
\section{Geographic Information}
\textbf{Country Name:} The conventional long form ``The United States of
America'' and the conventional short form is ``U.S.'' or ``The U.S.'' or
``America'' or ``The States.''
Two other maps can be found in the appendix.
{\noindent\large\textbf{Area, Time Zone, Climate}}
\noindent\begin{tabular*}{\textwidth}{@{\hspace{0ex}}lr@{\hspace{0ex}}}
\multicolumn{2}{@{\hspace{0ex}}l}{\textbf{Area}}\\
\parbox[b]{2.6in}{
Area of the United Sates is 9,826,675~m$^2$. The United States as a
percentage of Canada: 0.984\%. Ontario as a percentage of the United
States: 0.10\%
}
& \rule{1.5in}{1in}\\
%
&\\
\multicolumn{2}{@{\hspace{0ex}}l}{\textbf{Time Zone}}\\
\parbox[b]{2.6in}{
Due to the size of the U.S., numerous time zones will be discussed.
}
&
\begin{tabular}{|l|l|}
\hline
\footnotesize
America& Ottowa (12:00 PM)\\
CT & 11:00 A.M.\\
EST & 12:00 P.M.\\
MST & 10:00 A.M.\\
PST & 9:00 A.M.\\
\hline
\end{tabular}
\end{tabular*}
\end{document}