如何使用堆叠线段注释某些文本

如何使用堆叠线段注释某些文本

我该如何实现这种类型的设置?

带有指向注释的线段的文本

答案1

为了得到更完整的答案(来自 Luis Turcio 的答案),我建议这样做:

\documentclass{article}
\usepackage{annotate-equations}
\begin{document}
    \tikzmarknode{n1}{\underline{This}} \tikzmarknode{n2}{\underline{is}} \tikzmarknode{n3}{\underline{some}} \tikzmarknode{n4}{\underline{text}}
    \annotate[yshift=-0.5em]{below}{n4}{some info}
    \annotate[yshift=-2em,xshift=.2em]{below}{n3}{some more info}
    \annotate[yshift=-3.5em,xshift=4em]{below}{n2}{other info}
    \annotate[yshift=-5em,xshift=6.5em]{below}{n1}{as well}
\end{document}

输出:

在此处输入图片描述

答案2

这是一种可能性,annotate-equations建议也可以这样做tikzmark

\documentclass{article}
\usepackage{annotate-equations}
\begin{document}
\tikzmarknode{n1}{This} \tikzmarknode{n2}{is} \tikzmarknode{n3}{some} \tikzmarknode{n4}{text}
\annotate[yshift=-0.5em]{below}{n4}{some info}
\annotate[yshift=-2em,xshift=.2em]{below}{n3}{some more info}
\annotate[yshift=-3.5em,xshift=4em]{below}{n2}{other info}
\annotate[yshift=-5em,xshift=6.5em]{below}{n1}{as well}
\end{document}

在此处输入图片描述

相关内容