使用 wrapfig 包

使用 wrapfig 包

我的目标是写一段文字,文字右侧有图像,文字环绕图像。为此,我读到我应该使用 wrapfig,因此在我的文档中我写道:\usepackage{wrapfig} 并且当我使用这个包时,我收到此错误“!LaTeX 错误:未找到文件‘wrapfig.sty’。”即使我使用 miktek 控制台安装了包。我在 Windows 上用 texmaker 编码:这是我的代码:

\documentclass[french,12pt,a4paper]{Article}
\usepackage{wrapfig}
\usepackage[top=1.5cm,bottom=2cm,left=2.5cm,right=2.5cm,includehead]{geometry}
\usepackage[T1]{fontenc}% pour la sortie
\usepackage[utf8]{inputenc} % pour l'entrée
\usepackage{graphicx}
\usepackage{setspace}
\newcommand{\cRM}[1]{\MakeUppercase{\romannumeral #1}}  % Capital
\newcommand{\cRm}[1]{\textsc{\romannumeral #1}} % Petit majuscule
\newcommand{\crm}[1]{\romannumeral #1}
\newcommand{\siecle}[1]{\cRm{#1}\textsuperscript{e}~siècle}

\begin{document}
\end{document}

相关内容