
Eu gostaria de fazer o seguinte, mas mais corretamente:
Gostaria de ter as imagens à direita e as informações à esquerda. Tentei usar wrapfigure
package para fazer isso, mas não acho que seja o melhor caminho a seguir. O que você recomenda que eu faça para conseguir isso?
EDITAR:
Como posso fazer o seguinte para que as imagens fiquem lado a lado e o texto entre "Área" e tabela seja minimizado? Aqui está uma imagem:
Responder1
RESPOSTA EDITADA (Sem \tabular
) Com esta abordagem, cada subseção pode ser adaptada para o material específico. Como tal, o \parbox
pode ser mais estreito, para permitir espaço para duas figuras e para forçar o aumento da sua extensão vertical.
Nota: deixei a resposta original abaixo desta edição, porque constitui uma abordagem diferente em que imagens e tabelas são alocadas em um espaço horizontal igual na página):
\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}
RESPOSTA ORIGINAL (com \tabular
):
Aqui está uma possibilidade, usando tabular
a que mencionei em um comentário acima.
\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}