Tenho um problema com a quebra de texto em torno de duas figuras lado a lado, cada uma com uma altura diferente. Veja o modelo necessário abaixo.
Atualmente coloquei duas fotos com minipage
ambiente. Mas como posso combiná-lo com o wrapfigure
ambiente para obter o resultado desejado? Ou talvez existam outras soluções?
Atualmente eu uso este código simples:
\documentclass{artigo} \usepackage{wrapfig} \usepackage{xcolor} \usepackage{lipsum} \begin{documento} \lipsum[1] \begin{figura}[h] \begin{minipágina}[t]{0,5\linewidth} \centralização \textcolor{azul}{\rule{3cm}{3cm}} \caption{A} \label{fig:A} \end{minipágina} \begin{minipágina}[t]{0,5\linewidth} \centralização \textcolor{azul}{\rule{5cm}{8cm}} \caption{B} \label{fig:B} \end{minipágina} \end{figura} \lipsum[2] \end{documento}
Responder1
Você deve ajustar cuidadosamente as dimensões da sua imagem e o número de linhas que a figura envolvente irá estender (por exemplo, [10]
em \begin{wrapfigure}[10]{r}{5.5cm}
).
Um exemplo:
\documentclass{article}
\usepackage{graphicx,wrapfig,lipsum}
%------------------------------------------
\begin{document}
This is where the table goes with text wrapping around it. You may
embed tabular environment inside wraptable environment and customize as you like.
%------------------------------------------
\begin{wrapfigure}[10]{r}{5.5cm}
\rule{5.5cm}{7.1cm}
\caption{A wrapped figure}\label{wrap-fig:1}
\end{wrapfigure}
%------------------------------------------
This is where the table goes with text wrapping around it. You may
embed tabular environment inside wraptable environment and customize as you like. This is where the table goes with text wrapping around it. You may
embed tabular environment inside wraptable environment and customize as you like. This is where the table goes with text wrapping around it.
%
\begin{figure}[h]
\begin{minipage}{6cm}
\centering
\rule{\textwidth}{3cm}
\caption{my figure}\label{fig:2}
\end{minipage}%
\end{figure}%
\lipsum[2-3]
Figure~\ref{wrap-fig:1} is a wrapped figure.
%------------------------------------------
\end{document}
Responder2
Talvez isso possa ser útil para você:
\usepackage[dvips]{graphicx}
\usepackage{floatflt,epsfig}
\begin{document}
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
\begin{floatingfigure}[r]{9cm}
\mbox{\includegraphics[width=80mm,height=61mm]{bild.eps}}
\caption{bla}
\end{floatingfigure}
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
\end{document}
Caso contrário, poste o código que você usou até agora para resolver seu problema.
Além disso, estelinkpode ser útil.