如何绘制这个笛卡尔图

如何绘制这个笛卡尔图

我想知道如何使用 LaTeX 及其 tikz 包为我的数学课绘制此图表。在此处输入图片描述

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{tkz-euclide} % coordinate plane
\begin{document}
  \begin{tikzpicture}[scale=0.80]
    \tkzInit[xmax=8,ymax=8,xmin=-8,ymin=-8]
    \tkzGrid
    \tkzAxeXY
%    \draw[ very thick,dashed,latex-latex] (-6,4) -- (6,0);
  \end{tikzpicture}
\end{document}

相关内容