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.
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
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