如何使這些箭頭指向文字中的某些內容?

如何使這些箭頭指向文字中的某些內容?

如何使這些箭頭指向文字中的某些內容? 在此輸入影像描述

答案1

歡迎來到 TeX-SE!我想tikzmark為此做廣告,它是\tikzmarknode宏附帶的。 (編輯:箭頭相反,非常感謝@KJO!

\documentclass{article}
\usepackage{mathtools}
\DeclareMathOperator{\Gr}{Gr}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
$\Gr(\tikzmarknode{f}{f})=\left\{\bigl(x,f(x)\bigr);~x\in A\right\}$
\begin{tikzpicture}[overlay,remember picture]
\draw[latex-] (f) |- ++(3em,-1.6em) node[right]{grafico de $f$};
\end{tikzpicture}

\bigskip\bigskip
$\displaystyle\lim_{\begin{smallmatrix}x\to x_0\\
x>x_0\end{smallmatrix}}f(x)=\tikzmarknode{L}{L}\dots$
\begin{tikzpicture}[overlay,remember picture]
\draw[latex-] (L) |- ++(3em,-1.6em) node[right]{numero real};
\end{tikzpicture}
\end{document}

在此輸入影像描述

相關內容