I am a tikz beginning. Here is a figure I am working on. I cannot avoid the "Dimension too large" error.
\documentclass{standalone}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usetkzobj{all}
\begin{document}
\begin{tikzpicture}[x=2cm,y=2cm,scale=0.75]
\coordinate [label=below:$O$](O) at (0,0);
\coordinate [label=below:$A$](A) at (0,-1);
\coordinate [label=below:$D$](D) at (-1.1,-1);
\coordinate [label=below:$E$] (E) at (1,-1);
\coordinate [label=0:$B$](B) at (15:1);
\coordinate [label=180:$C$](C) at (140:1);
\draw (0,0) circle (1);
\draw (C) -- (O) -- (B);
\draw (C) -- (A) -- (B);
\draw (D) -- (E);
\tkzMarkAngle[label=$124^{\circ}$,dist=0.35,arc=l,size=0.2,color=black,fill=none](B,O,C)
\tkzMarkAngle[arc=l,size=0.3,color=black](A,C,O)
\end{tikzpicture}
\end{document}
I find it works if I change "scale=0.75" to "scale=1". But I want to keep the figure small.


scale=1in the standalone file and then reduce the dimensions using the argument for\includegraphics. – Gonzalo Medina Feb 20 '14 at 14:36size=0.25and it got solved by adding the units, i.e.,size=0.25cm. It does not work in the question's example, but it may help somebody else. – loved.by.Jesus Nov 25 '16 at 16:09