答案1
要在文本中间添加图像,请使用\includegraphics
graphicx。如果图像尺寸不合适,您可以像这样调整其大小:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
Here is an image: \includegraphics[height=1ex]{example-image-a}.
\end{document}
稍微降低图像可能会看起来更好。您可以使用\raisebox
(带负参数)来实现这一点,例如:
A bit bigger: \raisebox{-.2ex}{\includegraphics[height=2ex]{example-image-a}}.