我有一个双面文件,想要添加一些包装图。我的专长是我想在左页上包装部分标题。
该示例显示了第二部分的问题。一切都很好。
MWE:
\documentclass[12pt,a4paper,twoside,openright]{scrbook}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{caption}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\chapter{First Chapter}
\section{First Section}
\begin{wrapfigure}[14]{o}{0.4\linewidth}
\begin{center}
\includegraphics[width=0.75\linewidth]{picture}
\end{center}
\vspace*{-1em}
\captionsetup{width=0.75\linewidth}
\caption[short]{long.}
\end{wrapfigure}
\blindtext[5]
\section{Second Section}
\begin{wrapfigure}[14]{o}{0.4\linewidth}
\begin{center}
\includegraphics[width=0.75\linewidth]{picture}
\end{center}
\vspace*{-1em}
\captionsetup{width=0.75\linewidth}
\caption[short]{long.}
\end{wrapfigure}
\blindtext
\section{Third Section}
\begin{wrapfigure}[14]{o}{0.4\linewidth}
\begin{center}
\includegraphics[width=0.75\linewidth]{picture}
\end{center}
\vspace*{-1em}
\captionsetup{width=0.75\linewidth}
\caption[short]{long.}
\end{wrapfigure}
\blindtext
\end{document}