文本下方带有箭头线的连接字符

文本下方带有箭头线的连接字符

我正在尝试模仿下图中展示的内容……请帮忙?我指的是红色框、线条和箭头。提前谢谢您……在此处输入图片描述

答案1

这是一个tikz解决方案。

在此处输入图片描述

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{positioning}

\begin{document}

La ecuaci\'on anterior se puede reducir as\'i:
\[
2x+5x^2-1-3-4x^2-5x=0\to
\begin{tikzpicture}[baseline]
\node[anchor=base,draw=red](equation){$x^2-3x-4=0$};
\node[below left = .4cm and 1.2cm](text){\llap{\raise.7ex\hbox{\textsc{forma general de la ecuaci\'on}}}};
\draw[->, red](text)-|(equation);
\end{tikzpicture}
\]

\end{document}

相关内容