我想在以下链接上创建图片。
我如何使用 LaTeX 创建此图片?我尝试了不同的方法,但都没有用。
答案1
这里有一个可以作为开始的小代码。
\documentclass[]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc,shapes.callouts,matrix}
\begin{document}
\begin{tikzpicture}
\matrix (m) [matrix of nodes,nodes={minimum width=6cm,text width=5.8cm}]
{
\rlap{Area of triangle $ABC=\frac12ab\sin C=\frac12bc\sin A=\frac12ca\sin B$} \\[1cm]
\everymath{\color{red}} $\frac12ab\sin C=\frac12bc\sin A$ &
\everymath{\color{green}} $\frac12bc\sin A=\frac12ca\sin B$ \\
\everymath{\color{red}} cancelling $\frac12$ and $b$ from both sides &
\everymath{\color{green}} cancelling $\frac12$ and $c$ from both sides \\
};
\node[ellipse callout, draw=red, callout relative pointer={(-0.4,-0.4)},minimum width=4.6cm,minimum height=2cm] at ($(m-1-1)+(1.9,0)$) {};
\end{tikzpicture}
\end{document}