如何标记一个单词?

如何标记一个单词?

我需要对文本中的拼写错误进行分类,并根据图像标记单词。例如,用“TYP”代替“LIB”(表示拼写错误),用“recieve”等单词代替“skins”(在此例中故意拼错,表示拼写错误)。我不知道如何重现图像效果(箭头上方)。有什么想法吗?例子

答案1

我想你想要这个:

在此处输入图片描述

\documentclass{article}
\usepackage[many]{tcolorbox}

\newtcbox{\mylib}{enhanced,nobeforeafter,tcbox raise base,boxrule=0.4pt,top=0mm,bottom=0mm,
  right=0mm,left=4mm,arc=1pt,boxsep=2pt,before upper={\vphantom{dlg}},
  colframe=green!50!black,coltext=green!25!black,colback=green!10!white,
  overlay={\begin{tcbclipinterior}\fill[green!75!blue!50!white] (frame.south west)
    rectangle node[text=white,font=\sffamily\bfseries\tiny,rotate=90] {TYP} ([xshift=4mm]frame.north west);\end{tcbclipinterior}}}


\begin{document}

\mylib{recieve}

\end{document}

此外,如果你想要将字体更改为其他字体,只需添加类似的选项fontupper=\ttfamily

相关内容