2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-28 23:37:57 +02:00
LaTeX-examples/tikz/discontinuity-jump/discontinuity-jump.tex

19 lines
513 B
TeX
Raw Normal View History

2012-09-27 22:27:34 +02:00
\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tkz-fct}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}
\tkzInit [xmin=0,xmax=5,ymin=0,ymax=6]
\begin{scriptsize}
\tkzGrid[color = gray!30!white]
\tkzAxeXY
\end{scriptsize}
\draw[thick] (0,0) -- (1,1);
\draw[thick] (1,2) -- (5,6);
\draw[thick,fill=black] (1,1) circle (3pt);
\draw[thick,fill=white] (1,2) circle (3pt);
\end{tikzpicture}
\end{document}