Graphics, Figures & Tables ⇒ tikZ | Control Points
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
tikZ | Control Points
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
tikZ | Control Points
Code: Select all
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (2,4) .. controls (0,4) and (0,2) ..
(1,2) .. controls (2,2) and (2,0) .. (0,0);
\end{tikzpicture}
\end{document}