我想在幻灯片中添加图形绘图,但如果我用 来进行此操作wrapfigure
,我不会收到任何错误消息,但绘图根本不出现?
使用的 TeX 文件的代码beamerdefs.sty
,我还添加了 wrapfig 包:
\begin{frame}{EWMA Plot}
\begin{wrapfigure}{r}{5cm}
\begin{center}
\includegraphics[scale=0.4]{ewma2.jpg}
\end{center}
\caption{EWMA}
\end{wrapfigure}
\end{frame}
正如我所说,没有错误消息,它只是没有出现,如果我这样做而不wrapfigure
出现图形?有人可以帮忙吗?
答案1
您可以使用cutwin
包而不是wrapfig
;一个小例子也展示了提供与常规标题一致的标题的设置:
\documentclass{beamer}
\usepackage{cutwin}
\usepackage{lipsum}
\begin{document}
\begin{frame}
\renewcommand\windowpagestuff{%
\includegraphics[height=4cm, width=3cm]{ctanlion}
\par{\usebeamercolor[fg]{caption name}%
\usebeamerfont*{caption name}\figurename%
\usebeamertemplate{caption label separator}}%
\raggedright%
\usebeamerfont*{caption}%
A figure with wrapping text.%
}
\opencutleft
\vfill
\begin{cutout}{0}{0pt}{.65\linewidth}{13}
\lipsum[1]
\end{cutout}
\end{frame}
\end{document}
CTAN 狮子绘画由 Duane Bibby 绘制。
答案2
includegraphics
我也遇到了同样的问题。如果环境中的命令wrapfigure
是includegraphics
文档中的第一个命令,则该命令似乎会显示为空白。
blank.pdf
您可以通过创建一个空白图像(例如)并将其包含在环境之前来解决此问题wrapfigure
。这对我来说有效:
\includegraphics[width=0pt]{blank.pdf}
\begin{wrapfigure}{r}{0.5\textwidth}
\centering
\includegraphics[width=0.48\textwidth]{Figure_Clinical_Correlation.pdf}
\label{clincorr}
\end{wrapfigure}