图标上方有文字(堆叠在阅读器上方)

图标上方有文字(堆叠在阅读器上方)

如何在图标上添加文本(朝向阅读器堆叠在一起)。

基本上 LaTeX 相当于那个 html 问题:

https://stackoverflow.com/questions/22644741/how-to-position-text-over-font-awesome-icon

答案是:

<span class="fa-stack fa-3x">
    <i class="fa fa-trophy fa-stack-2x"></i>
      <span class="fa fa-stack-1x" style="color:red;">
          <span style="font-size:35px; margin-top:-20px; display:block;">
              #1
          </span>
    </span>
</span> 

答案1

像这样吗?

\documentclass[border=0.5cm]{standalone}
\usepackage{xcolor}
\usepackage{fontawesome5}

\begin{document}
\faIcon{trophy}\kern-7.25pt\relax
\raisebox{4.5pt}{\textcolor{white}{\tiny 1}}
\end{document}

1

答案2

使用\stackinset。此处,插图1堆叠在 右侧 0.05pt 处,中心上方 1.7pt 处。

\documentclass[border=0.5cm]{standalone}
\usepackage{xcolor}
\usepackage{fontawesome5}
\usepackage{stackengine}
\begin{document}
\stackinset{c}{.05pt}{c}{1.7pt}{\textcolor{white}{\tiny 1}}{\faIcon{trophy}}
\end{document}

在此处输入图片描述

相关内容