围绕图

时间:2018-03-22 12:02:11

标签: latex

我有一个双面文件,想要添加一些包装图。我的专长是我想在左页上包装部分标题。

该示例显示了第二部分的问题。一切都很好。

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}

结果: https://i.imgur.com/N8cuf0D.jpg

0 个答案:

没有答案