将图像与文本一起放置

将图像与文本一起放置

我正在尝试插入一张内嵌文本的小图片。目前我的代码如下:

Press \begin{figure}[H]\includegraphics[scale=0.7]{fit_button}\end{figure} to start the fitting. Wait for the program to finish and the fit should

这导致

在此处输入图片描述

但我希望它是这样

在此处输入图片描述

我怎样才能做到这一点?

答案1

检查是否有效:

Press \includegraphics[scale=0.7]{fit_button} to start the fitting. Wait 
for the program to finish and the fit should

原因

figure是浮动环境,即使浮动选项是 ,它也总是需要一个新行H。所以我们当然不能figure在这里使用。

事实上,\includegraphics{}使图片看起来就像一个普通角色。只需“照常”放置即可。

答案2

除了包含图像之外,还可以在乳胶中完成此操作:

\documentclass{article}

\usepackage{xcolor}

\begin{document}

Press \fcolorbox{black}{lightgray!50!white}{\textsf{\textbf{~~~FIT~~~}}} to start the fitting. Wait for the program to finish and the fit should

\end{document}

优点是可以更轻松地从 pdf 中复制文本

在此处输入图片描述

相关内容