如何将图像添加为上标

如何将图像添加为上标

出版商要求作者通过在通讯作者旁边放置图像来指定通讯作者:

请在通讯作者姓名旁边放置一个信封图标(或任何其他指针)

我想将图像添加为上标。如何在 Latex 中执行此操作?

答案1

使用fontawesome图标集:

\documentclass{article}
\usepackage{fontawesome}
\begin{document}
Test\textsuperscript{\faEnvelopeO}
\end{document}

截屏

marvosym

\documentclass{article}
\usepackage{marvosym}
\begin{document}
Test\textsuperscript{\Letter}
\end{document}

截图2

尽管还有许多其他符号包包含这样的信封图标。

答案2

您可以选择以下代码。[scale=0.04]您可以使用上标增加或减少图像的大小。您可以插入任何图像而不是example-image-b。您最喜欢的那个。您还可以选择任何格式的图片 .pdf、.jpg、.tiff 等。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}

\usepackage{graphicx}

\begin{document}
An example of an image as a text superscript\textsuperscript{\includegraphics[scale=0.04]{example-image-b}}.\\
\end{document}

相关内容