I'm trying to make a potential divider circuit with an LDR. I've been going through the CircuiTikZ 1.6.0 - manual for components so far and thought the LDR (on page 50) would just work like the others, but the LDR doesn't show up. Swapping it for the photoresistor (or any other resistor for that matter) works, but I prefer the LDR.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,-2) to [battery1,invert] (0,2);
\draw (0,2) -- (2,2)
to [european resistor, name=R1, l_=R$_{F}$] (2,0)
to [european light dependent resistor, name=R2, l_=R$_{LDR}$] (2,-2)
(2,-2) -- (0,-2);
%voltmeters
\draw (2,1.75) -- (3,1.75)
(3,1.75) to[rmeter, t=V$_{F}$] (3,0.25)
(3,0.25) -- (2,0.25);
\end{circuitikz}
\end{document}
I will admit I am fairly new to circuitikz and I could just be missing something obvious.
If needed, here's the link to the aforementioned manual https://texdoc.org/serve/circuitikz/0
Any help with this is greatly appreciated.


circuitikzyou have installed? And, do you have any error in the compilation? Have a look at https://tex.stackexchange.com/questions/524328/i-need-to-use-a-different-version-of-circuitikz-how-can-i-do-that – Rmano Dec 30 '22 at 18:54circuitikz[version 1.6.0 (2022/12/10)] works fine. – Zarko Dec 30 '22 at 19:14