在句子中很好地插入图形?

在句子中很好地插入图形?

我经常使用在 Illustrator 中绘制的字符串图,并且想在句子内绘制它们。

当我刚输入\includegraphics{...}文本时,图像会出现,但其底部与文本对齐。我希望图像的中心与文本对齐,类似于\displaystyle总和或积分的中心与文本对齐而不是其底部对齐。

答案1

最简单的方法是

\begin{tabular}{@{}c@{}}\includegraphics{...}\end{tabular}

更复杂,但也许更方便,

\usepackage[export]{adjustbox}

进而

\includegraphics[valign=M]{...}

例子:

\documentclass{article}
\usepackage[export]{adjustbox}
\usepackage{graphicx}

\begin{document}

Some text \includegraphics[height=3ex]{example-image-1x1} some text

\bigskip

Some text
\begin{tabular}{@{}c@{}}\includegraphics[width=3ex]{example-image-1x1}\end{tabular}
some text

\bigskip

Some text \includegraphics[height=3ex,valign=M]{example-image-1x1} some text

\bigskip

Some text \includegraphics[height=3ex,valign=m]{example-image-1x1} some text

\end{document}

在此处输入图片描述

如果您想要完全控制升高或降低的量,请使用\raisebox

\raisebox{-.5\height}{\includegraphics{...}}

您可以使用明确的长度,而不是\height或其倍数。

相关内容