Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/sql-server-2008/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Latex 将节标题环绕在图的周围_Latex - Fatal编程技术网

Latex 将节标题环绕在图的周围

Latex 将节标题环绕在图的周围,latex,Latex,我有一个双面文档,想添加一些包装图。其特点是我希望在左边的页面上有包装好的章节标题 该示例显示了第二部分的问题。对于第一个和第三个,一切都很好 MWE: 结果: 我想你在tex.se网站上问这个问题的机会会更大。我投票决定迁移它。 \documentclass[12pt,a4paper,twoside,openright]{scrbook} \usepackage{wrapfig} \usepackage{graphicx} \usepackage{captio

我有一个双面文档,想添加一些包装图。其特点是我希望在左边的页面上有包装好的章节标题

该示例显示了第二部分的问题。对于第一个和第三个,一切都很好

MWE:

结果:

我想你在tex.se网站上问这个问题的机会会更大。我投票决定迁移它。
    \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}