如何将按钮图像放入文本中?

如何将按钮图像放入文本中?

我想以这种方式将图像放入乳胶中,如您所见:通过选择{image}添加SpatialLite Layer ...选项

在此处输入图片描述{图片}

答案1

正如 Heiko 所建议的,如果图像已经存在, 您可以使用包\includegraphics的命令。graphicx

这是一个 MWE(最小工作示例):

 \documentclass{article}
 \usepackage{graphicx} 
 \usepackage{mwe} % Just needed here for the dummy image.
 \begin{document}
 by selecting the 
 \includegraphics[height=0.6\baselineskip]{example-image-a} 
 Add SpatialLite Layer\ldots{} option fro 
 \end{document}

如果您想动态创建内联图片,您可能需要查看 TikZ 和\tikz{}此处讨论的命令:TikZ 图片内联

相关内容