Skip to content
Snippets Groups Projects
Select Git revision
  • 1e1da135696a8aef0aea7e8b44a2bf6111b734ff
  • master default protected
  • typos
  • development protected
  • ReadMe_Typos
  • example
  • feat/autocomplete-vscode
  • v3.3
  • v3.2
  • v3.1
  • v3.0
  • v2.2
  • v2.1
  • v2.0
  • old-example
  • v1.5
  • v1.4
  • v1.3
  • v1.0
  • v1.1
  • v1.2
21 results

exampleCircuit.tex

Blame
  • exampleCircuit.tex 874 B
    \documentclass{HsH-standalone}
    
    \usepackage{siunitx} % SI units
    \usepackage{amsmath} % nice formulas
    \usepackage{circuitikz} % draw circuit diagramms, uses tikz
    
    \begin{document} %----------------------Content---------------------------------------------------%
    
    \begin{circuitikz} \draw
    	(0,0)	to[V, v<=$U_q$, i=$I_q$]  ++(0,2)
    			-- ++(2,0)
    			to[R, i^=$I_R$]	++(0,-2)
    			to[rmeter, t=A] ++(-2,0)
    	;
    \end{circuitikz}
    
    \begin{circuitikz} \draw
    	(0,0)	to[I, v^<=$U_q$, i=$I_q$]  ++(0,2)
    			-- ++(2,0) coordinate(a)
    			to[R, *-*, v^=$U_R$] ++(0,-2) coordinate(b)
    			-- ++(-2,0)
    	(a) 	-- ++(1.5,0)
    			to[rmeterwa, t=V] ++(0,-2)
    			-- (b)
    	;
    \end{circuitikz}
    
    \begin{circuitikz} \draw
    	(0,-2)	coordinate(home)
    			to[V, v<=$U_q$] ++(0,2)
    	;
    	\foreach \i in {0,...,3} \draw
    		(0,0) -- ++(1.5+\i,0)
    			to[R, *-*,l=$R_\i$] ++(0,-2)
    			-- (home)
    	;
    \end{circuitikz}
    
    \end{document}