I'm displaying text along an arc in tikz and I want that text to contain the degree symbol (celcius). However, pdflatex seems to hang on my code.
I've reduced my problem to a MWE and it reproduces. I'm working in texstudio w/ texlive on Ubuntu Linux.
\documentclass{standalone}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\begin{document}
\begin{tikzpicture}
\path[ postaction={ decorate },
decoration={
text along path,
text={|\small\color{black}|Temperature: 0 to 100 \textdegree C},
text align = {center},
raise = -8pt
}
]
(-0.5 * 0.5in * 3.26, -0.866025404 * 0.5in * 3.26)
arc(240:-60:0.5in * 3.26);
\end{tikzpicture}
\end{document}
Anybody knows what is wrong? How can I work around this problem?

