actualmente tengo
\begin{figure}[H]
\centering
\begin{circuitikz}
\draw (0,0)
to[V,v=$5V$] (0,4) % The voltage source
to[R=$3.9$\si{\ohm}] (4,4)
to[R=$19\si{\ohm}$] (4,0) % The resistor
to[short] (3,0)
to[short] (3,.5)
to [R=$33$\si{\ohm} (1,.5)
to [short] (1,.5)
to[short] (1,0)
to [short] (1,-.5)
to [R=$69$\si{\ohm}] (3,-.5)
to [short] (3,-0.5)
to[short] (3,0)
\end{circuitikz}
\end{figure}
No sé cómo terminar el circuito, se agradece cualquier ayuda, ¡gracias!
Respuesta1
¡Bienvenido a TeX.SE!
Ya casi ha terminado... Solo corrijo la sintaxis de los valores de las resistencias usando la opción siunitx
al cargar circuitikz
el paquete, empujo los valores de las resistencias paralelas en lados opuestos y agrego la línea que falta para cerrar el circuito:
\documentclass[margin=3mm]{standalone}
\usepackage{siunitx}
\usepackage[siunitx]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) to[V=5<V>] (0,4) % The voltage source
to[R=3.9<\ohm>] (4,4)
to[R=19<\ohm>] (4,0) % The resistor
to[short] (3,0)
to[short] (3,.5)
to [R,a=33<\ohm>] (1,.5) |- (0,0) % <---
(3,0) to[short] (3,-.5)
to [R=69<\ohm>] (1,-.5) % <----
to [short] (1,0);
\end{circuitikz}
\end{document}
Respuesta2
Esta respuesta muestra cómo siunitx
se debe usar para componer números con unidades (si no se usa la siunitx
opción de , o fuera de , ya que la sintaxis ya se muestra encircuitikz
cicruitikz
circuitikz
@Zarko) así como el uso de coordinate
s para facilitar el proceso de posicionamiento de cosas (más posicionamiento relativo mediante el uso de la ++
sintaxis).
La etiqueta de los bipolos se puede cambiar al otro lado usando l_=<label>
en su lugar, por lo que para una resistencia use R, l_=<label>
en lugar de R=<label>
. También invertí la dirección del voltaje usando v<=<label>
en lugar de v=<label>
y coloqué uniones usando -*
.
\documentclass[border=3.14]{standalone}
\usepackage{siunitx}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) coordinate (start)
to[V,v<=\SI{5}{\volt}] ++(0,4) % The voltage source
to[R=\SI{3.9}{\ohm}] ++(4,0) coordinate (topright)
to[R=\SI{19}{\ohm}] (start-|topright) % The resistor
to[short,-*] ++(-1,0) coordinate (pright)
to[short] ++(0,.5)
to[R,l_=\SI{33}{\ohm}] ++(-2,0) coordinate (tmp)
to[short,-*] (start-|tmp) coordinate (pleft)
(pright)
to[short] ++(0,-.5) coordinate (tmp)
to[R=\SI{69}{\ohm}] (tmp-|pleft)
to[short] (pleft)
to[short, -.] (start) % the `-.` ensures there is no gap here
;
\end{circuitikz}
\end{document}