높이가 다른 두 그림을 나란히 텍스트로 묶는 데 문제가 있습니다. 아래에서 필요한 템플릿을 살펴보세요.
현재 저는 minipage
환경과 함께 두 장의 사진을 배치했습니다. 하지만 wrapfigure
필요한 결과를 얻기 위해 어떻게 환경과 결합할 수 있습니까 ? 아니면 다른 해결책이 있을까요?
현재 나는 다음과 같은 간단한 코드를 사용합니다.
\documentclass{기사} \usepackage{wrapfig} \사용패키지{xcolor} \사용패키지{립섬} \begin{문서} \lipsum[1] \begin{그림}[h] \begin{미니페이지}[t]{0.5\linewidth} \센터링 \textcolor{파란색}{\규칙{3cm}{3cm}} \caption{A} \label{그림:A} \end{미니페이지} \begin{미니페이지}[t]{0.5\linewidth} \센터링 \textcolor{파란색}{\규칙{5cm}{8cm}} \caption{B} \라벨{그림:B} \end{미니페이지} \end{그림} \lipsum[2] \end{문서}
답변1
이미지의 크기와 줄 바꿈 그림이 확장되는 줄 수(예: )를 신중하게 조정해야 [10]
합니다 \begin{wrapfigure}[10]{r}{5.5cm}
.
예:
\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}
답변2
어쩌면 이것이 당신에게 도움이 될 수 있습니다:
\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}
그렇지 않은 경우 문제 해결을 위해 지금까지 사용한 코드를 게시하십시오.
게다가 이링크도움이 될 수 있습니다.