将文本环绕在 PDF 上

将文本环绕在 PDF 上

我正在制作一张海报,有一张 PDF 格式的图片。我想让图片位于其所在区块的右侧,文字位于其左侧?

我已经搜索过了,但找不到任何对我有用的东西

为了回应第一条评论,我现在尝试

 \begin{minipage}{0.5\textwidth}
 \includegraphics[scale=2]{BOB.pdf}
 \end{minipage}

但是我将图像放在了盒子的中央而不是右侧。

MWE:“

\documentclass[final,hyperref={pdfpagelabels=false}]{beamer}
\mode<presentation> { \usetheme{Berlin} \usetheme{Dreuw} } 
\usepackage{times} 
\usepackage{amsmath,amsthm, amssymb, latexsym} 
\boldmath 
\usepackage{wrapfig, graphicx, upgreek} 
\usepackage[english]{babel} 
\usepackage[latin1]{inputenc} 
\usepackage[orientation=landscape,size=a0,scale=1.4,debug]{beamerposter}

\begin{document}
\begin{frame}{} 
    \begin{columns}[t]
    \begin{column}{.30\linewidth}
    \begin{block}{Monte Carlo Technique}
           When we have..accuracy through looking at the proportion of points inside and outside the circle. 
    \begin{wrapfigure}[13]{r}{0.4\textwidth}
    \includegraphics[width=0.4\textwidth]{BOB.pdf} 
    \end{wrapfigure}
    The Monte Carlo ....vvfvfdv 
     \end{block}    
     \end{column}
     \end{columns}
\end{frame}{}
\end{document}

答案1

买者自负

这个答案虽然在很大程度上解决了 OP 的任务(OP 正在使用beamer类),但在一个方面存在错误:换行符不正确,因为它wrapfig与列一起使用,而列的实现可能基于某种形式的列表或 trivlist;并且wrapfiglistish 东西不兼容。(参见最后一个例子!)

~解决方法是在不需要换行的地方添加。

代码

\documentclass{article} 
\usepackage[demo]{graphicx}
\usepackage{wrapfig}
\usepackage{lipsum} 
\begin{document}
\begin{wrapfigure}[11]{r}{0.4\textwidth}
\includegraphics[width=0.4\textwidth]{demo}
\caption{My Demo} 
\end{wrapfigure}
\lipsum[1] 
\end{document}

代码的工作原理如下:

  • 首先介绍一下软件包:lipsum用于插入随机文本以供演示。我再次传递了获取虚拟图形的demo选项graphicx,以便于说明。

  • 现在来看看功能部分: \begin{wrapfigure}[11]{r}{0.4\textwidth}

    • 该数字11是环绕图形的线条数。这是可选的,也就是说,LaTeX 可以猜测这个数字。
    • 表示r将图形放在右侧(相当于让线条在左侧向下延伸)。这是 的强制参数wrapfigure enviroment
    • 下一个参数是图像的宽度。此参数也是必需的。

输出

唇部.png


致原帖者

这是一个等效的 MWE:

\documentclass[demo,hyperref={pdfpagelabels=false}]{beamer}
\mode<presentation> {\usetheme{Berlin}} 
\usepackage{times} 
\usepackage{amsmath,amsthm, amssymb, latexsym} 
\boldmath 
\usepackage{wrapfig, graphicx, upgreek, lipsum} 
\usepackage[english]{babel} 
\usepackage[latin1]{inputenc} 
\usepackage[orientation=landscape,size=a0,scale=1.4,debug]{beamerposter}

\begin{document}
\begin{frame}{} 
   \begin{columns}[t]
   \begin{column}{.30\linewidth}
   \begin{block}{Monte Carlo Technique}
      When we have..accuracy through looking at the proportion of points inside and outside the circle. 
   \begin{wrapfigure}{r}{0.4\textwidth}
   \includegraphics[width=0.4\textwidth]{BOB} 
  \end{wrapfigure}
  \lipsum[1]
\end{block}    
\end{column}
\end{columns}
\end{frame}{}
\end{document}

这是输出 I(和一个很少 其他聊天常客)可获得:

谢谢尼古拉.png

相关内容