Tengo un problema con el texto que rodea dos figuras una al lado de la otra, cada una de las cuales tiene una altura diferente. Mire la plantilla requerida a continuación.
Actualmente coloqué dos fotos con minipage
el medio ambiente. Pero, ¿cómo puedo combinarlo con el wrapfigure
entorno para obtener el resultado requerido? ¿O tal vez haya otras soluciones?
Actualmente uso este código simple:
\documentclass{artículo} \usepackage{wrapfig} \usepackage{xcolor} \usepackage{lipsum} \begin{documento} \lipsum[1] \begin{figura}[h] \begin{minipágina}[t]{0.5\linewidth} \centrado \textcolor{azul}{\regla{3cm}{3cm}} \caption{A} \label{figura:A} \end{minipágina} \begin{minipágina}[t]{0.5\linewidth} \centrado \textcolor{azul}{\regla{5cm}{8cm}} \caption{B} \label{figura:B} \end{minipágina} \end{figura} \lipsum[2] \end{documento}
Respuesta1
Tienes que ajustar cuidadosamente las dimensiones de tu imagen y el número de líneas que se extenderá la figura envolvente (por ejemplo, [10]
en \begin{wrapfigure}[10]{r}{5.5cm}
).
Un ejemplo:
\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}
Respuesta2
Quizás esto te pueda resultar útil:
\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}
De lo contrario, publique el código que utilizó hasta ahora para resolver su problema.
Además, esteenlacepodría ser útil.