Graphics, Figures & Tables ⇒ Software for creating freehand graphs?
Software for creating freehand graphs?
The illustrations I need are mathematical/economical of nature - I need 2-dimensional graphs to illustrate different concepts and the underlying mathematical functions are not necessary (ie. the exact functions are irrelevant to the concepts)
I'm using WinEdt and MiKTeX but need something for creating my illustrations - I've found LaTeXDraw, Scientific WorkPlace, MatLab and more but I don't think any on them really fulfills my requirements... (maybe LaTeXDraw is the most promising but it doesn't work properly on my Windows 7 setup)
Any ideas or pointers?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Software for creating freehand graphs?

- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
Software for creating freehand graphs?
welcome to the forum!
You could try jpgfdraw. Besides that, I use TikZ for smooth drawings looking like freehand made, using either smooth plots or the hobby package such as here.
Code: Select all
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{hobby}
\begin{document}
\begin{tikzpicture}
\draw [thick, ->] (-3,0) -- (3,0) node [anchor=north west] {};
\draw [thick, ->] (0,-3) -- (0,3) node [anchor=south east] {$\mathbf{C}$};
\draw (0,2) to [closed, curve through = {(1.4,1.2) (1.5,1) (2,0) (1.2,-0.2)
(0,-1.4) (-1.5,-0.8) (-0.7,0) (-1.4,1) (-0.2,1.5)}] (0,2);
\end{tikzpicture}
\end{document}
Stefan