하단의 WrapFigure - WrapFigure 아래에 공백이 없습니다.

하단의 WrapFigure - WrapFigure 아래에 공백이 없습니다.

책의 왼쪽이나 오른쪽에 그림을 배치하여 텍스트의 열 너비를 줄이고 싶습니다. 그래서 wrapfigure좁은 줄 수가 40개인 환경을 사용하고 있습니다 . 이렇게 하면 그림이 페이지 전체를 덮게 됩니다. 그러나 나는 그림이 아래쪽에 있고 그림 위에 공백이 있기를 원합니다. 이것을 어떻게 깨달을 수 있습니까?

\begin{wrapfigure}[40]{O}{0.4\textwidth}
  \includegraphics[width=0.4\textwidth]{Fig3-Givonis-bioclimaticchart}
  \caption[Givoni's bioclimatic chart for four representative climate zones of Nepal]
    {Givoni's bioclimatic chart for four representative climate zones of Nepal}
  \label{fig:Fig3-Givonis-bioclimaticchart}
\end{wrapfigure}

여기에 이미지 설명을 입력하세요

답변1

키를 더 크게 만들면 \parbox페이지에 맞지 않습니다.

\documentclass{book}
\usepackage{wrapfig}
\usepackage{mwe}

\begin{document}
\setcounter{page}{2}
\begin{wrapfigure}{O}{0.4\textwidth}
  \parbox[b][\dimexpr \textheight-\baselineskip][b]{0.4\textwidth}{%
    \includegraphics[width=0.4\textwidth,height=0.6\textheight]{example-image}
    \caption{caption}}
\end{wrapfigure}

\lipsum[1-4]
\end{document}

전체 페이지


대안은 파라콜을 사용하는 것입니다.

\documentclass{book}
\usepackage{paracol}
\usepackage{caption}
\usepackage{mwe}

\begin{document}
\setcounter{page}{2}
\setcolumnwidth{{\dimexpr 0.6\textwidth-\columnsep},0.4\textwidth}
\twosided[c]
\begin{paracol}{2}
  \sloppy
  \lipsum[1-4]
\switchcolumn
  \vspace*{\fill}
  \noindent\includegraphics[width=0.4\textwidth,height=0.6\textheight]{example-image}
  \captionof{figure}{caption}
  \newpage
\end{paracol}
\end{document}

답변2

이 접근 방식은 tikzpagenodes이미지를 페이지 하단에 배치하는 데 사용됩니다. 각 단락은 중복 여부를 테스트하고 조정해야 합니다. 텍스트를 위나 아래로 이동하면 처음부터 다시 수행해야 합니다.

\documentclass{article}
\usepackage{caption}
\usepackage{tikzpagenodes}
\usepackage{mwe}

\newlength{\overlap}

\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\node[above right,inner sep=0pt] at (current page text area.south west) {%
\begin{minipage}{0.4\textwidth}
  \includegraphics[width=\textwidth,height=4.5in]{example-image}
  \captionof{figure}{caption}
\end{minipage}};
\end{tikzpicture}

\overlap=\dimexpr 0.4\textwidth + \columnsep\relax% for example

\lipsum[1]% no overlap
\hangindent=\overlap
\hangafter=3
\lipsum[2]% 3 lines before overlap
\leftskip=\overlap
\lipsum[3]% paragraph completely overlapped
\leftskip=0pt
\hangindent=\overlap
\hangafter=-5
\lipsum[4]% 5 lines vefore end of page
\end{document}

전체 페이지

관련 정보