discontinuity-jump.tex 513 B

12345678910111213141516171819
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tkz-fct}
  3. \usetikzlibrary{arrows}
  4. \begin{document}
  5. \begin{tikzpicture}
  6. \tkzInit [xmin=0,xmax=5,ymin=0,ymax=6]
  7. \begin{scriptsize}
  8. \tkzGrid[color = gray!30!white]
  9. \tkzAxeXY
  10. \end{scriptsize}
  11. \draw[thick] (0,0) -- (1,1);
  12. \draw[thick] (1,2) -- (5,6);
  13. \draw[thick,fill=black] (1,1) circle (3pt);
  14. \draw[thick,fill=white] (1,2) circle (3pt);
  15. \end{tikzpicture}
  16. \end{document}