使图形突出于边距

使图形突出于边距

我想使用 wrapfig 插入一个突出到页边距的图形。这不起作用,它导致图形出现在文本末尾:

{\addtolength\textwidth{1in}
\begin{wrapfigure}{r}{0.5\textwidth}
  \begin{center}
    \includegraphics[width=0.48\textwidth]{funcimmet1.pdf}
  \end{center}
  \caption{Graph of $2{{\sin }^{2}}x-1$}
\end{wrapfigure}
}

这会使图片变大但不会突出,它会占用左侧的更多空间:

\addtolength\textwidth{1in}
\begin{wrapfigure}{r}{0.5\textwidth}
  \begin{center}
    \includegraphics[width=0.48\textwidth]{funcimmet1.pdf}
  \end{center}
  \caption{Graph of $2{{\sin }^{2}}x-1$}
\end{wrapfigure}
\addtolength\textwidth{-1in}

我怎样才能做到这一点?

答案1

wrapfigure 有一个可选参数。使用完整定义

[number of narrow lines] {placement} [overhang] {width of figure}

Placement is one of   r, l, i, o, R, L, I, O,  for right, left,

The figure sticks into the margin by `overhang', if given.

答案2

你可以把\makebox图片放到一个较小的框里,比如这篇博文, 例如

\makebox[smaller width]{\includegraphics[bigger width]{funcimmet1}}

相关内容