Graphics, Figures & Tables ⇒ tikz | Draw a Multiplexer
tikz | Draw a Multiplexer
I'd like to draw logical scheme with a set AND/OR/NOT gates and include there MUX-2 and MUX-4 elements.
Tried to make an expansion for circuit.logic library but received a lot of weird errors.
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
Re: tikz | Draw a Multiplexer
http://www.ctan.org/pkg/circuit-macros
Re: tikz | Draw a Multiplexer
Unfortunately, this package is not available in MikTex... and most of the time I am working on Windows box. So I need a solution which is compatible with MikTex distribution.
tikz | Draw a Multiplexer
For a quick check, try the folloing code:
Code: Select all
\documentclass[a4paper,10pt,english]{article}
\usepackage{circuitikz}
\begin{document}
\begin{figure}[h]
\begin{circuitikz}
\draw (0,0) to[generic,v>=$U_1$] (2,0);
\end{circuitikz}
\end{figure}
\end{document}