I was trying to draw arcs in tikz, and I was using code from this site
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\draw (0,0) arc (0:270:8mm);
\draw (0,0) arc (0:315:1.75cm and 1cm);
\filldraw[fill=cyan, draw=blue] (0,0) -- (12mm,0mm) arc (0:30:12mm) -- (0,0);
\end{tikzpicture}
\end{document}
But this does not work
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\draw (0,0) arc[radius = 8mm, start angle= 0, end angle= 270]
\draw (0,0) arc[x radius = 1.75cm, y radius = 1cm, start angle= 0, end angle= 315]
\end{tikzpicture}
\end{document}
He just keeps compiling, absorbing 100% CPU according to my Activity Monitor. Is this normal? Is it possible something hasn't been installed properly?
;at the end of the two\drawlines. If I add them in all is well: what version ofpgfdo you have installed? – Joseph Wright♦ Feb 13 at 9:40arcs came after that version of PGF. Take a look at your version of the manual (texdoc pgf) to see if that is a valid syntax for specifyingarcs. If not, you either have to update TikZ/PGF (recommended) or use the old syntax. – Andrew Stacey Feb 13 at 11:24