How can I draw flip-flops and why doesn't this work?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (3,0) node[flipflop JK, add async SR, rotate=90]{};
\end{circuitikz}
\end{document}
circuitikzmanual that flipflops were added in version 1.0.0, so if you have an older version you need to upgrade. You can check the version with\documentclass{article} \usepackage{circuitikz} \begin{document} \pgfcircversion \end{document}. How exactly you can update the package, if that is what's needed, depends on which TeX distribution you have installed (MikTeX, TeX Live, MikTeX). – Torbjørn T. May 10 '20 at 15:32circuitikz, so apart from waiting until they make TL 2020 available (they're working on it, but I don't know when that will happen), I would guess you have to manually upload all the files forcircuitikzv1 to your project to make the code in your question work. Which is a bit inconvenient, and there are multiple files. – Torbjørn T. May 10 '20 at 15:42