我想用文本框绘制插图节点,如图所示,但我的 latex 很差。有创业公司吗?
答案1
tikz pic
这是使用 tikzlibrary 中的形状的尝试。人们可能会在定义中cloud
玩弄自己喜欢的。此外,节点 (c1) 和 (c2) 可以调整以放置两个云。cloud puff arc=110, aspect=2
cloud/.pic
编辑:aspect=2
用密钥替换cloud ignores aspect
密钥将产生
代码
\documentclass{article}
\usepackage[left=0in,top=2in]{geometry}
\usepackage{tikz,amsmath}
\usetikzlibrary{arrows,shapes}
\newcommand{\tikzmarkC}[1]{\tikz[overlay,remember picture,baseline={-3pt}] \node[] (#1) {
};}
\tikzset{cloud/.pic={
\node[cloud, cloud puffs=10.8,cloud puff arc=110, aspect=2, draw, text width=3cm
] () at (0,0) {\tikzpictext};
}}
\begin{document}
\begin{flalign*}
6x^2+9x-8x-12&=3\tikzmarkC{a}x(2x+3)-\tikzmarkC{b}4(2x+3)\\
&=(3x-4)(2x+3)
\end{flalign*}
\begin{tikzpicture}[overlay,remember picture]
\pic (c1) at (15,5) [pic text=$3x$ is a factor of both $6x^2$and $9x$]{cloud};
\pic (c2) at (17,1) [pic text=$-4$ is a factor of both $-8x$ and $-12$]{cloud};
\draw[-latex'] (c1) to[bend right] (a);
\draw[-latex'] (c2) to[bend left] (b);
\end{tikzpicture}
\end{document}