This commit is contained in:
Martin Kennedy 2025-05-04 14:56:41 -04:00
parent 312652236a
commit 32b4d09d39

View File

@ -11,6 +11,7 @@
\usepackage{longtable,booktabs,array}
\usepackage{caption}
\usepackage{xcolor}
\usepackage{circuitikz}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
@ -74,6 +75,37 @@ component, formatting, style, styling, insert
This document is a model and instructions for \LaTeX.
Please observe the conference page limits.
\begin{figure}[h]
\caption{test}
\begin{circuitikz}
\node (in_p) at (0,1.5) {$v_p$};
\node (in_n) at (0,0) {$v_n$};
\node (opamp) [op amp,yscale=1.5] at (3,0.75) {};
\node (out) at (6,0.75) {};
% Input resistor
\draw (in_p) -- (1.5,1.5) to [R=$R_i$] (1.5,0) -- (in_n);
% Connections to the op-amp
\draw (1.5,1.5) -- (opamp.-);
\draw (1.5,0) -- (opamp.+);
% Dependent voltage source
\node (v_dep_plus) at (4.5,1.5) {$+$};
\node (v_dep_minus) at (4.5,0) {$-$};
\draw (opamp.out) -- (4,0.75) node [right] {$A(v_p - v_n)$};
\draw (4,1.5) -- (v_dep_plus);
\draw (4,0) -- (v_dep_minus);
\draw (v_dep_plus) -- (5,1.5);
\draw (v_dep_minus) -- (5,0);
% Output resistor
\draw (5,1.5) -- (5,1) to [R=$R_o$] (5,0.5) -- (5,0);
\draw (5,0.75) -- (out);
\node [right of=out] {$v_{out}$};
\end{circuitikz}
\end{figure}
\section{Ease of Use}
\subsection{Maintaining the Integrity of the Specifications}