[Tex/LaTex] Thermistor in Tikz circuit library

symbolstikz-pgf

Is there a symbol like a thermistor in the Tikz circuit library? I read the documentation and couldn't find anything like it. There is a symbol for a varistor but what I'm looking for would be something like this:

thermistor

rather than this:

enter image description here

Best Answer

You need the version 0.3.0 of the circuitikz package to draw thermistors. Once you have installed it, use the following code:

\documentclass{article}
\usepackage[europeanresistors]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) to[thR] (2,0);
\end{circuitikz}
\end{document}

as you can see in the manual at page 10.