오른쪽에는 이미지, 왼쪽에는 정보로 페이지를 분할하는 방법

오른쪽에는 이미지, 왼쪽에는 정보로 페이지를 분할하는 방법

다음을 수행하고 싶지만 더 정확하게는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

오른쪽에는 이미지가 있고 왼쪽에는 정보가 있어야 합니다. 패키지를 사용해 보았지만 wrapfigure이것이 최선의 방법은 아니라고 생각합니다. 이를 달성하기 위해 무엇을 권장합니까?

편집하다:

이미지가 나란히 있고 "영역"과 표 사이의 텍스트가 최소화되도록 다음을 수행하려면 어떻게 해야 합니까? 다음은 이미지입니다:

여기에 이미지 설명을 입력하세요

답변1

편집된 답변(없음 \tabular) 이 접근 방식을 사용하면 각 하위 섹션을 특정 자료에 맞게 조정할 수 있습니다. 따라서 \parbox두 인물을 위한 공간을 허용하고 수직 범위를 늘리기 위해 을 더 좁게 만들 수 있습니다.

참고: 이미지와 테이블이 모두 페이지에서 동일한 수평 공간에 할당되는 다른 접근 방식을 구성하기 때문에 이 편집 아래에 원래 답변을 남겼습니다.

\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위의 의견에서 언급한 것을 사용하여 한 가지 가능성이 있습니다 .

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

여기에 이미지 설명을 입력하세요

관련 정보