使用 LaTeX 创建图片

使用 LaTeX 创建图片

我想在以下链接上创建图片。

我如何使用 LaTeX 创建此图片?我尝试了不同的方法,但都没有用。

在此处输入图片描述

参考文献:http://www.pearsonschoolsandfecolleges.co.uk/Secondary/Mathematics/14-16/EdexcelGCSEMathematics/Samples/StudentBooksamples/SamplepagesfromLinearHigherStudentBook.pdf

答案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}

在此处输入图片描述

相关内容