以下是我所拥有的:

以下是我所拥有的:

我认为,这是一个类似的问题:对包裹图形进行微调?但答案并没有达到我所希望的效果(实际上,没有任何效果)。

我有文字环绕图像(图像右对齐)。图像位于段落开头。文本上方有空白区域,我希望图像向上移动,占据部分空白区域,同时仍被段落文本环绕。

以下是我所拥有的:

Caption text

Paragraph text +---+
Paragraph text |   |
Paragraph text |   |
Paragraph text +---+
Paragraph text Para-

这是我想要的:

               +---+
Caption text   |   |
               |   |
Paragraph text +---+
Paragraph text Parag-
raph text Paragraph

这就是我尝试实现这一目标的方法:

\begin{wrapfigure}{r}{0pt}
  \centering
  \vspace{-52pt}
  \includegraphics[width=1.75in,height=1.75in]{./images/ultrasound/figure11.png}
  \vspace{50pt}
\end{wrapfigure}

\section{Bladder}
\label{sec-17}
\textbf{Views:} Transverse and sagittal, With jets in Power (5 minutes
after drinking), Prostate or Uterus underneath...

答案1

关于图像尺寸的谎言确实有效。

\documentclass[]{article}

\usepackage{duckuments}
\usepackage{graphicx}
\usepackage{wrapfig}

\begin{document}
\section{A Section}
\begin{wrapfigure}{r}{0pt}
  \centering
  \setbox0\hbox
    {\includegraphics[width=1.75in,height=1.75in]{example-image-duck}}%
  \ht0=50pt % change this to move it up or down
  \dp0=0pt
  \box0
\end{wrapfigure}
\blindduck[1-2]
\end{document}

在此处输入图片描述

相关内容