LaundrySorcery

Log | Files | Refs

commit 66665f2565d66fee6c3b4727c0d2e9111dc449f8
parent b4ac17b0d55dca43a77951a720a99b1e24405f10
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Tue, 19 Jun 2018 22:28:36 +0000

Add a circuitikz-variant of the schematics

Diffstat:
doc/Schematics.tex | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/doc/Schematics.tex b/doc/Schematics.tex @@ -0,0 +1,12 @@ +\documentclass{standalone} +\usepackage{tikz} +\usepackage[europeanresistors]{circuitikz} +\begin{document} +\begin{tikzpicture} +\draw[o-] (0,0) -- (1,0); +\draw (1,0) to[phR,l={LDR}] (3,0); +\draw[-o] (3,0) -- (5,0); +\draw (3.5,0) to[C,l={$1\mathrm{\mu F}$}] (3.5,-2) node[ground]{}; +\fill (3.5,0) circle(0.5ex); +\end{tikzpicture} +\end{document}