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
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
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