LaTex 图像问题

LaTex 图像问题

我正在尝试在文本中添加图片,但是最简单的方法

这不是完整的代码,但我只是想向你展示我使用的方法。我之前在一个模板中使用过同样的方法,而且成功了。现在我得到了 6 个错误,它们都列在了出现的位置:

\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfig}

     \begin{wrapfigure}{r}{0.5pt\textwidth} % Environment wrapfigure undefined and Illegal unit of measure (pt inserted)
        \begin{center}
        \includegraphics[width=5cm, height=7cm]{img1.jpg} % Undefined control sequence
         \captionog{figure}{Blind Date (Mein mit dem leben)}
      \end{center}
    \end{wrapfigure} % \begin{document} ended by \end{wrapfigure}

我该怎么办?我需要非常简单和简短的方法因为这只是一个小练习项目。我希望这张照片出现在文本的右侧,文本和图像之间的间距很小。

当我添加\usepackage{wrapfig}并尝试插入如下图像时:

\begin{wrapfigure}{r}{0.5\textwidth}
    \begin{center}
    \caption{Karava\dj{}o - autoportret}
    \includegraphics[width=5cm, height=7cm]{img1.jpg}
  \end{center}
\end{wrapfigure}

我得到了这个(图像代码后只有文本和小节):

在此处输入图片描述

相关内容