This shows you the differences between two versions of the page.
— |
paper:latex:circuit [2022/11/24 12:09] (current) odagawa created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | =====回路図===== | ||
+ | circuitikz を使ってみた. | ||
+ | インクルードは以下の通り. | ||
+ | |||
+ | <code latex> | ||
+ | \usepackage{circuitikz} | ||
+ | </ | ||
+ | |||
+ | MPPC の模式図を書いたのが以下 | ||
+ | <code latex> | ||
+ | \begin{figure}[h] | ||
+ | \centering | ||
+ | \begin{circuitikz} | ||
+ | \ctikzset{bipoles/ | ||
+ | \ctikzset{bipoles/ | ||
+ | \draw(1.5, | ||
+ | to[short, o-](1.5,4); | ||
+ | \draw(1.5, | ||
+ | to[short](0, | ||
+ | \draw(1.5, | ||
+ | to[short](3, | ||
+ | \draw(0,4) | ||
+ | to[short](0, | ||
+ | to[european resistor](0, | ||
+ | to[D*] (0,1) | ||
+ | to[short](0, | ||
+ | \draw(1,4) | ||
+ | to[short](1, | ||
+ | to[european resistor](1, | ||
+ | to[D*] (1,1) | ||
+ | to[short](1, | ||
+ | \draw(2,4) | ||
+ | to[short](2, | ||
+ | to[european resistor](2, | ||
+ | to[D*] (2,1) | ||
+ | to[short](2, | ||
+ | \draw(3,4) | ||
+ | to[short](3, | ||
+ | to[european resistor, l=Quenching resistors](3, | ||
+ | to[D*, l=APD pixels] (3,1) | ||
+ | to[short] (3,0.5); | ||
+ | \draw(0, | ||
+ | to[short](1.5, | ||
+ | \draw(3, | ||
+ | to[short](1.5, | ||
+ | \draw(1.5, | ||
+ | to[short, -o](1.5, | ||
+ | \end{circuitikz} | ||
+ | \caption[Schematic circuit of one MPPC]{Schematic circuit of one MPPC.} | ||
+ | \end{figure} | ||
+ | </ | ||
+ | |||
+ | '' |