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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}