使文本浮动在图形周围

使文本浮动在图形周围

我需要你们中任何知道如何用 LaTex 编码的人的帮助。我想在论文的左侧包含一张图片,在右侧的剩余部分写一些文字。我实际上包含了包 { wrapfig} 并编写了代码

\begin {wrapfigure}{l}[width=15cm]
\{includegraphicx} {its name}
\end{wrapfigure} 

并继续写我的文字,但它出现在图像上方。我在 Youtube 上观看了几个教程,但没有一个正确地解释了如何做到这一点。如果你们能帮助我,我将不胜感激。

答案1

正如评论中所指出的,\{includegraphicx} {its name}不是一个有效的命令,你应该使用\includegraphics{filename}
此外, 的宽度wrapfigure应该放在最后的 内{},而不是由 指定[width=]

如果你改正了这些错误,你可以wrapfigure这样使用:

\documentclass{article}
\usepackage{blindtext}

\usepackage{graphicx,wrapfig}

\begin{document}
    \blindtext
    
    \begin{wrapfigure}{l}{10cm} % 15cm is usually too wide to have the figure next to text
        \centering
        \includegraphics[width=.9\linewidth]{example-image-duck}
        \caption{Still a very wide figure}
    \end{wrapfigure}
    \blindtext
\end{document}

在此处输入图片描述

.5\linewidth我建议使用相对宽度,而不是将宽度设置为 10 厘米(甚至 15 厘米)。

答案2

这是你想要的?

在此处输入图片描述

只需删除draft第一行的 -option 即可。

\documentclass[draft]{beamer}
\usepackage{wrapfig}

\begin{document}
   \begin{frame}
      Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt \ldots
      \begin{wrapfigure}{l}{5cm}
         \includegraphics[scale=.15]{yourpicture}
         \caption{This is a caption.}
      \end{wrapfigure}
      Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
      Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\ldots
   \end{frame}
\end{document}

相关内容