Graphics, Figures & Tables ⇒ Unit circle sans labels
-
- Posts: 156
- Joined: Sat Jan 22, 2011 9:55 pm
Unit circle sans labels
I'm seeking a template for a unit circle, but without any labels (so I can give my students a quiz). I can find plenty of pictures of the unit circle with labels.
Even better would be if I could set and clear the labels at will.
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
Unit circle sans labels
Code: Select all
\documentclass{article}
\usepackage{tikz}
\newlength\ruc
\setlength\ruc{1in}
\begin{document}
\begin{tikzpicture}
\draw (0,0) circle (\ruc);
\foreach \x in {0,30,...,330}
\draw (0,0) -- (\x:\ruc);
\end{tikzpicture}
\end{document}
Rainer
-
- Posts: 7
- Joined: Mon Apr 16, 2018 11:04 am