As you can see, the Greek letter theta which is expected to be just below the curved stroke instead takes on a completely unexpected position. What could it be due to?
\documentclass[14pt]{article}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{snakes}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{shapes.arrows}
\usepackage{xcolor}
\definecolor{ocra}{rgb}{0.72,0.53,0.04}
\definecolor{verde}{HTML}{00C200}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[thick]
\draw[gray,snake=coil,segment length=3pt] (-0.5,3.5) -- (0.75,5) node [midway, right,yshift=3px] (sx) {};
\draw[gray,snake=coil,segment length=3pt] (0.75,5)-- (2,3.5) node [midway, left,yshift=3px] (dx){};
\node[circle,draw=blue,fill=blue!25,scale=0.75,minimum size=0.1cm] at (-0.5,3.5) (A) {\textcolor{blue}{A}};
\node[circle,draw=red,fill=red!25,scale=0.75,minimum size=0.1cm] at (0.75,5) (B) {\textcolor{red}{B}};
\node[circle,draw=ocra,fill=ocra!25,scale=0.75,minimum size=0.1cm] at (2,3.5) (C) {\textcolor{ocra}{C}};
\node[xshift=0.5cm,yshift=-0.5cm] at (A) (a) {};
\draw[->] (a) -- ++ (-1,0);
\node[xshift=-0.5cm,yshift=-0.5cm] at (C) (c) {};
\draw[->] (c) -- ++ (1,0);
\draw[] (sx) to [in=255,out=-75] (dx) node [midway,below] (theta) {$\theta$};;
\end{tikzpicture}
\end{figure}
\end{document}
14pt
is a useless option: thearticle
class only knows10pt
(default),11pt
and12pt
. If you're looking for a 14 points text, consider theextsizes
classes, e.g.extarticle
.