如何将信息图表添加到等式中?

如何将信息图表添加到等式中?

我很高兴在这里写作,为这个伟大的社区做出更多贡献。请看下一张图片... 在此处输入图片描述

\footsize{该屏幕截图取自 Dennis G. Zill 所著的《Ecuaciones diferenciales con aplicaciones de modelado》,第 9 版}。

那么,问题是“如何将天蓝色的文字添加到等式中?” D:

答案1

可能这种类型的帖子已经很多了。现在再来一篇。

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{calc,tikzmark}
\newcommand{\diff}{\mathop{}\!\mathrm{d}}
\begin{document}
Some text before the equation.
\[\frac{\diff^2\tikzmarknode{x}{x}}{\diff \tikzmarknode{t}{t}^2}+16x=0
\begin{tikzpicture}[overlay,remember picture]
\begin{scope}[color=cyan]
 \draw[latex-] (x.north) |- ++ (1em,1em) node[right,yshift=\baselineskip/2,align=left]
  (x1) {unknown function\\ of one variable};
 \draw[latex-] (t.south) |- ++ (1em,-1em) node[right,align=left]
  (t1) {independent variable};
\end{scope}
\end{tikzpicture}
\begin{tikzpicture}[remember picture,baseline=(aux.base)]
\node(aux){\vphantom{1}};
\path let \p1=($(x1.north)-(aux.base)$),\p2=($(t1.south)-(aux.base)$) in 
    (0,\y1) (0,\y2);
\end{tikzpicture}\]
Some more text after the equation.
\end{document}

在此处输入图片描述

相关内容