Graphics, Figures & Tables ⇒ Help with circuitz problem
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
Hello,
I really need help with drawing this one, I don't know even how to start. Can anyone make code for this so I can see it and try to understand what is what here.
Thanks a lot!
I really need help with drawing this one, I don't know even how to start. Can anyone make code for this so I can see it and try to understand what is what here.
Thanks a lot!
Last edited by Safari8331 on Thu May 25, 2017 8:26 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
Welcome to the forum!
You could start with an example from http://www.texample.net/tikz/examples/tag/circuitikz/ or that circuit library example, or an example from the
circuitikz or
tikz manual.
Stefan
You could start with an example from http://www.texample.net/tikz/examples/tag/circuitikz/ or that circuit library example, or an example from the


Stefan
LaTeX.org admin
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
I saw this second example, but I cant figure out what is what, I only know how to type code for nodes lol. The rest is mistery, thanks anyway. I'll give it a shot.
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
Sure, then post your shot here, to check unsolved issues.
Stefan
Stefan
LaTeX.org admin
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem

How can I get this gate? This is not in nand?
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
Any help?
Last edited by Safari8331 on Sat May 27, 2017 2:16 pm, edited 2 times in total.
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
Here is the standard nand gate with just another branch node left of it.
Stefan
Code: Select all
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{circuits.logic.US,positioning,calc}
\begin{document}
\tikzset{branch/.style = {fill, shape=circle, minimum size=4.5pt, inner sep=0pt}}
\begin{tikzpicture}[every circuit symbol/.style={thick}][label distance=2mm]
\node[nand gate US, draw, logic gate inputs=nn] at (1.3,0) (nand) {};
\node [branch, left = 0.4 of nand] (nand-left) {};
\draw (0,0) -- (nand-left);
\draw (nand-left) |- ($(nand.input 1)+(0,0.05)$);
\draw (nand-left) |- ($(nand.input 2)-(0,0.05)$);
\end{tikzpicture}
\end{document}
LaTeX.org admin
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
Thanks a lot, this will help for sure.