Graphics, Figures & Tables ⇒ Help with circuitz problem
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
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!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10328
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
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
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm
Help with circuitz problem
- Stefan Kottwitz
- Site Admin
- Posts: 10328
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
Stefan
-
- 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
- Stefan Kottwitz
- Site Admin
- Posts: 10328
- Joined: Mon Mar 10, 2008 9:44 pm
Help with circuitz problem
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}
-
- Posts: 11
- Joined: Wed May 17, 2017 5:34 pm