如何在摘要中添加带有环绕文字的图像?

如何在摘要中添加带有环绕文字的图像?

如何在摘要中插入带环绕文本的图像。我尝试过 wrapfigure 包和 cutwin 包,但都失败了。Wrapfigure 发出警告(警告 1:在冲突环境中使用包装图警告 2:固定包裹图被迫浮动)并且无法按预期工作。只有当我的文档类为

\documentclass[journal=aamick,manuscript=article]{achemso}

以下是示例代码(wrapfigure已被注释掉):


\documentclass[journal=aamick,manuscript=article]{achemso}
\usepackage{graphicx}
\usepackage{tikz,graphics,color,fullpage,epsf,caption,subcaption}
\usepackage{wrapfig}
\usepackage{lipsum}

\newcommand*\mycommand[1]{\texttt{\emph{#1}}}


\author{Author 1}
\affiliation{Department of University 1}
\email{[email protected]}
\author{Author 2}
\affiliation{Department of University 2}
\author{Author3}
\affiliation{Department of University 3}
\author{Author4}
\affiliation{Department of University 4}


\title {Xxxxxxxxx xx xxx xxxx xxxxxxxxxx xxxxxxx xxxx xxxxxxxx xxxxxxxx xxxxxxx xxxxxxxx xxxx xxxx}


\abbreviations{To be added as comma separted list if all abbr.}
\keywords{Ketword 1, Ketword 2, Ketword 3, Ketword 4, Ketword 5}

\begin{document}
\begin{abstract}

% \begin{wrapfigure}{r}{0.5\textwidth}
%     \begin{center}
%         \includegraphics[width=0.48\textwidth]{Images/Graphical_Abstract.jpeg}
%     \end{center}
%     \caption{Birds}
%     \end{wrapfigure}

 \includegraphics[width=0.58\textwidth]{Images/Graphical_Abstract.jpeg}

\lipsum[1]
\end{abstract}
\end{document}

这样我就可以在摘要中插入图像,但文本不会环绕图像。我希望实现以下目标:

  1. 在摘要中插入带环绕文字的图片
  2. 摘要不应从新页面开始,而应在作者详细信息之后立即开始
  3. [最好] 图像应出现在摘要的 3-4 行之后,插入的图像应右对齐,宽度应为线宽的 40%。

你能帮我解决这个问题吗?我只对乳胶有基本的了解。

答案1

wrapfigure在列表内不起作用(并且摘要内部使用相同的机制)。

相反,您可以使用普通的(不是 LaTeX)包insbox(因此使用\input,而不是\usepackage):

\documentclass[journal=aamick,manuscript=article]{achemso}
\usepackage{graphicx}
\usepackage{tikz,graphics,color,fullpage,epsf,caption,subcaption}
\usepackage{wrapfig}
\usepackage{lipsum}

\newcommand*\mycommand[1]{\texttt{\emph{#1}}}


\author{Author 1}
\affiliation{Department of University 1}
\email{[email protected]}
\author{Author 2}
\affiliation{Department of University 2}
\author{Author3}
\affiliation{Department of University 3}
\author{Author4}
\affiliation{Department of University 4}


\title {Xxxxxxxxx xx xxx xxxx xxxxxxxxxx xxxxxxx xxxx xxxxxxxx xxxxxxxx xxxxxxx xxxxxxxx xxxx xxxx}


\abbreviations{To be added as comma separted list if all abbr.}
\keywords{Ketword 1, Ketword 2, Ketword 3, Ketword 4, Ketword 5}

\input{insbox}

\begin{document}
\begin{abstract}
  \InsertBoxR{3}{\includegraphics[width=0.4\linewidth]{example-image-duck}}
  \lipsum[1]
\end{abstract}
\end{document}

在此处输入图片描述

相关内容