\begin{circuitikz}[scale=1.2]
% Power supply
\draw (0,4) to[V, l=$12V$] (0,0)
(0,4) to[short] (2,4)
(0,0) node[ground]{};
% Voltage divider
\draw (2,4) to[R, l=$R_1=\SI{10}{k\ohm}$] (2,2)
to[R, l=$R_2=\SI{5}{k\ohm}$] (2,0)
(2,0) to[short] (0,0);
% Transistor amplifier
\draw (2,2) to[short] (3,2)
(3,2) to[R, l=$R_B=\SI{47}{k\ohm}$] (5,2)
(5,2) node[npn, anchor=base](Q1){Q1}
(Q1.collector) to[R, l=$R_C=\SI{2.2}{k\ohm}$] (5,4)
(5,4) to[short] (2,4)
(Q1.emitter) to[R, l=$R_E=\SI{1}{k\ohm}$] (5,0)
(5,0) to[short] (2,0);
% Output coupling
\draw (Q1.collector) to[C, l=$C_{out}=\SI{10}{\mu F}$] (7,3)
to[R, l=$R_L=\SI{8}{\ohm}$] (7,0)
(7,0) to[short] (5,0)
(7,3) node[ocirc, label=right:Output]{};
% Input coupling
\draw (3,2) to[C, l=$C_{in}=\SI{1}{\mu F}$] (1,2)
node[ocirc, label=left:Input]{};
\end{circuitikz}