다음 페이지로 넘어가는 그림 간격

다음 페이지로 넘어가는 그림 간격

이미지를 옆에 있는 텍스트에 맞춰 정렬하려고 합니다. \setlength{\intextsep}{0em}%를 사용하여 위쪽을 잘 정렬했지만 어떤 이유로 그림의 아래쪽 세로 간격이 다음 페이지로 이어집니다.

스크린샷 링크

나는 다음 두 가지를 모두 사용해 보았습니다.

\setlength{\textfloatsep}{0em}
\setlength{\savedbelowcaptionskip}{0em}

그러나 어느 쪽도 나에게는 효과가 없는 것 같습니다.

현재 .tex 파일에 있는 코드는 다음과 같습니다.

\chapter{Introduction}
\setlength{\columnsep}{1.5em}%
\setlength{\intextsep}{0em}%
\begin{wrapfigure}{o}{0.31\textwidth}
\centering
\smash{}{\includegraphics[width=0.31\textwidth]{Images/Introduction/amazone.jpg}}
\caption{Wounded Amazon, Ny Carlsberg Glyptotek}
\label{img:amazon}
\end{wrapfigure}

Lorem ipsum...

그리고 내 .sty 파일에서:

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{style}[2015/04/21 Report style package]

% Graphics
\RequirePackage{graphicx}
\RequirePackage{subcaption}
\RequirePackage{wrapfig}
\newlength\savedintextsep % For saving the top vertical spacing for figures
\setlength{\savedintextsep}{\intextsep}

이미지 크기를 줄여서 다음 페이지로 넘어가지 않게 하면 되는데 옆에 있는 텍스트 하단과 맞지 않네요... 이월 간격!

답변1

환경의 선택적 인수를 사용하여 좁은 줄 수를 지정할 수 있습니다. 제가 잘 계산해 본다면 다음과 같아야 합니다.

 \begin{wrapfigure}[21]{o}{0.31\textwidth}

관련 정보