Graphics, Figures & Tables ⇒ circuitikz | Electrical Circuits
circuitikz | Electrical Circuits
I have a problem with an electrical diagram and I wonder if anybody can help me.
The problem is that I can't do more than one Op Amp in a single circuit, at least in circuitikz and I haven't found yet another package to do electrical circuits in LaTeX.
If any of you knows how to do more than one Op Amp in a same circuit or knows any other package to build this I will appreciate your help
Thank you for our time and effort.
Regards
Daniel
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
circuitikz | Electrical Circuits

Regards
Re: circuitikz | Electrical Circuits
https://ece.uwaterloo.ca/~aplevich/Circ ... mples.html
circuitikz | Electrical Circuits
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage[spanish]{babel}
\usepackage{tikz}
\usepackage{circuitikz}
\begin{document}
\begin{center}
\begin{circuitikz}
\draw (0,0) node[op amp] {};
\end{circuitikz}
\end{center}
\end{document}

Texmaker
windows 7 64
-
- Posts: 45
- Joined: Fri Mar 16, 2012 8:22 pm
circuitikz | Electrical Circuits
Simply add an other one like this.dagarzu wrote: If any of you knows how to do more than one Op Amp in a same circuit or knows any other package to build this I will appreciate your help
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{circuitikz}
\begin{document}
\begin{center}
\begin{circuitikz}
\draw (0,0) node[op amp] (opamp1) {};
\draw (4,2) node[op amp] (opamp2) {};
\draw (opamp1.out) -- (opamp2.+);
\end{circuitikz}
\end{center}
\end{document}
Good day
Alain Rémillard