以下代码不会产生所需的图像:
\documentclass{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\usepackage{setspace}
\usepackage{wrapfig}
\begin{document}
\begin{tcolorbox}[width=\textwidth]%
\setlength{\intextsep}{0pt}%
\begin{wrapfigure}{l}{0.25\textwidth}
\includegraphics[width=\linewidth,natwidth=440,natheight=600]
{Cauchy.jpg}
\vspace{-10pt}%
\end{wrapfigure}
{\small
\begin{spacing}{0.8}
\lipsum[1]
\vspace{-10pt}%
\end{spacing}
}
\end{tcolorbox}%
\end{document}
在我更新 MikTeX 之前,一切都运行正常。现在柯西的脸部应该在的地方出现了一个空白点。我检查了文件Cauchy.jpg
(使用\includegraphics
),它工作正常。我正在使用pdflatex
。
答案1
您在使用这些\includegraphics
选项时遇到了问题natwidth=440,natheight=600
。如果您删除它们,则会出现图像:
\documentclass{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\usepackage{setspace}
\usepackage{wrapfig}
\begin{document}
\begin{tcolorbox}[width=\textwidth]%
\setlength{\intextsep}{0pt}%
\begin{wrapfigure}{l}{0.25\textwidth}
\includegraphics[width=\linewidth]{example-image-duck}
%{Cauchy.jpg}
\end{wrapfigure}
\small
\begin{spacing}{0.8}
\lipsum[1]
\vspace{-\baselineskip}
\end{spacing}
\end{tcolorbox}%
\end{document}
(如果您想要更大的图像,则增加wrapfigure
环境的宽度。