I cut this out so that there is no confusion.
I have this picture:

And I've managed to draw this:

The code is as follows:
\begin{figure}
\begin{circuitikz}[european]
\draw[o-] (0,2.2) to (0,4);
\draw (0,4) -- (1,4);
\draw (1,4) to[R,l_=\SI{1}{\kilo\ohm},-*] (1,2) to[R,l_=\SI{500}{\ohm},-*] (1,0)
-- (0,0);
\draw[-o] (0,0) -- (0,1.5);
\draw (1,2) -- (3,2);
\draw (3,2) -- (4,2) node[component]{A} -- (5,2);
\draw (3,0) -- (3,1) node[component]{V} -- (3,2);
\draw
(6,2.27) node[njfet]{}
node[anchor=east] {G}
node[anchor=north] {D}
node[anchor=south] {S};
\draw (6,0) -- (6,2);
\draw (6,3) -- (6,4);
\draw (1,0) -- (8,0);
\draw (2,0) to[C,l^=\SI{4.7}{\nano\farad},*-*] (2,2);
\draw (7,0) -- (7,2) node[component]{V} -- (7,4);
\draw (6,4) -- (6.5,4) node[component]{A} -- (8,4);
\draw[o-] (8,2.2) to (8,4);
\draw[-o] (8,0) to (8,1.5);
\end{circuitikz}
\end{figure}
I guess you can see where is the problem:
- how to add + and - on the nodes?
- how to make writings not overlap each other?
- when I tried to make the code for the jfet like the one from the manual I got errors about (njfet. G) stuff...
So any advice on how to solve this?
EDIT: Oh and can I somehow modify the elements? Because, for instance, npn BJT has arrow pointing out of emmiter and I need it to point it in...
CircuiTikZ? Apart from less complex circuits, I do not think that TikZ is the appropriate tool for this kind of objectives. – Harold Cavendish Apr 14 '11 at 21:17