{circuitikz} is a package for drawing electrical networks with TikZ.
1
vote
0answers
33 views
circuitikz 0.3.0 label relative position
I'm trying to draw a simple example circuit:
\documentclass[a4paper,oneside,titlepage]{article}
\usepackage[utf8]{inputenc}
\usepackage[siunitx]{circuitikz}
\usepackage{tikz}
\usepackage{siunitx}
...
3
votes
1answer
65 views
How to switch the poles of the SPDT switch in circuitikz
I am drawing a circuit with circuitikz that have lots of SPDT switches.
I want to show the circuit at two different moments: once, when all the SPDT switches connected to out1 and the second with all ...
3
votes
0answers
176 views
Can´t draw plain amp with circuitikz [closed]
I'm trying to use the package circuitikz, and I need to draw a plain amp, I'm traying to do this as the manual says but it keep throwing this error message
"I don´t know the '/tikz/plain amp' and ...
4
votes
1answer
92 views
circuitikz: labels, component size, and documentation
I'm trying to pick up circuitikz tonight to draw a few circuits. I ran into a few problems.
Problem 1: Positioning Labels
Here's my problem. When I use this code:
\documentclass{article}
...
3
votes
1answer
112 views
straight voltage arrows in circuitikz
I want straight voltage arrows in circuitikz, but all are bowed. Someone new a solution? The bowed arrows are totally ugly.
\documentclass[a4paper,10pt]{scrartcl}
\usepackage{tikz}
...
6
votes
2answers
125 views
Boolean AND Gate
I cannot figure out how I can to draw and label a single AND gate. All of the online examples are horizontally aligned. I drew the image. Please anyone show me how do this in LaTeX.
Edited to ...
2
votes
0answers
42 views
circuitikz: error: cannot use all symbols [closed]
I cannot use all symbols for examble I want to use an thR resistor. In the old version of circuit there was no thR, but in Version 0.3.0 there is one. But I allways get an error when compiling. ...
3
votes
1answer
3k views
Block Diagrams in TikZ
for my thesis i need to put some block diagrams in my LaTeX document. I was recommended to use TikZ for that.
This is the only sample code i could find.
Do you guys maybe have some tutorials / doc ...
6
votes
1answer
319 views
Compiling CircuiTikZ with -shell-escape (pdflatex)
I'm trying to use both CircuiTikZ and pgfplots. In order not to overflow LaTeX memory, I use the TikZ externalize library with -shell-escape command in pdfLaTeX. It compiles the pgfplots nicely, but ...
3
votes
1answer
56 views
Flipping Transistors with Circuiktikz
I was wondering if there was any way to flip a transistor or similar node component around in the circuitikz package? For the bipoles it's fairly simple as you just reverse the start and end, but for ...
4
votes
1answer
82 views
CircuitTikZ splitting input into two gates
I have LaTeX code using the CircuitTikZ package for drawing a simple logic circuit, but I'm not convinced that my code is the correct way to do what I'm trying to do. Essentially, I have two inputs ...
3
votes
1answer
134 views
How to put label and voltage on same object in CircuiTikZ?
If I type the following code there is no problem:
\begin{circuitikz}[american]
\draw (0,0) to[R, l^=$R_4$, v=$V_1^+$, -*] (0,2) --(0,4);
\end{circuitikz}
But the polarity is not the one I need. And ...
3
votes
1answer
161 views
Rotate voltmeter CircuiTikz
I'm using Latex and CircuiTikz to draw circuits but I can't rotate de voltmeter without making a disaster. Any idea? Here is an example.
\begin{circuitikz}
\draw
(0,0) to[ammeter] (3,0)
to ...
3
votes
1answer
622 views
Circuitikz label in middle of open circuit
I've just started using Circuitikz and and I'd like to know how one would go about getting a label say, 'v', in the middle of the open circuit (perhaps with a plus and minus either side of it).
Also, ...
1
vote
1answer
113 views
Change symbol size in circuitikz
How can I make the diodes in the following circuit smaller?
\documentclass{article}
\usepackage{tikz}
\usepackage[europeanresistors,americaninductors]{circuitikz}
\begin{document}
...
1
vote
1answer
133 views
pdflatex renders files differently from a strings — example provided
I am running pdftex from command line and the images are getting clipped. When I run the same commands from a saved tex file, no clipping occurs. I have attached the commands and rendered outputs ...
2
votes
0answers
200 views
Off Grid Circuitikz Symbols
Shouldn't circuits line up on the grids? Otherwise, drawing code get messy -- really quick. I have found pins-to-grid alignment to be common practice in most the Schematic/Diagram programs I have ...
3
votes
2answers
188 views
Circuitikz - Have european voltages sources but american voltages indicators
I currently have the following:
Now the problem is with the voltage indicator Vc. I don't want to it to be an arrow but a + Vc - kind of notation. This is easily done by using the option american ...
1
vote
1answer
122 views
I am trying to use circuitikz, but this error pops up whenever I compile
I am currently trying to run some examples in the circuitikz library, and I keep getting the following error and the document will not compile:
Package pgfkeys Error: I do not know the key ...
4
votes
1answer
204 views
How can I add a component to circuitikz?
Similar to CircuiTikZ — create new component
I am using circuitikz to create an electric circuit diagram.
I have found the preset symbol for the zener diode to be different to the symbol I wish to ...
6
votes
3answers
284 views
Use circuitikz voltage source icon as a node
I'm using circuitikz to draw a single line diagram:
But I have no idea how to get rid of the line on top of the voltage source. Is there a simple way to do it?
Here's my current code:
...
4
votes
1answer
130 views
Circuitikz inverter bubble
I'm using circuitikz to create some logic gate diagrams. In my course we use "inversion bubbles" as a convenient shortcut instead of drawing inverters everywhere. As in inputs A and B in this image:
...
13
votes
7answers
4k views
Electric circuits in TeX, LaTeX, and Friends
What are some ways to draw electric circuits in TeX systems?
I'm making this community wiki since I haven't found a question related to this.
I was thinking along the lines of circuitikz. What do ...
1
vote
2answers
437 views
Spacing circuit element labels from their elements with CircuiTikz
I want to draw a resistor with a resistance value showing and a voltage label showing as well. This is content-wise an MWE of everything I want:
\documentclass{article}
...
1
vote
1answer
423 views
3-input logic gate on circuitikz
How can I draw a 3-input logic gate with circuitikz? Is there a way to do so?
For example,
\begin{circuitikz}
\draw
(0,0) node[and port](myand){}
(myand.in 1) node[left]{A}
(myand.in 2) ...
3
votes
1answer
75 views
Make ins and outs longer on ports in ciruitikz
I have the following using circuitikz. I would like to make the lines going from the vertical 2 lines to the inverters be longer. I could create the small sections of lines myself, but I was wondering ...
4
votes
2answers
1k views
Drawing switches in circuitikz with connectors (dots)
I'm trying to draw an example of the logical operation of a logic gate for an analog electronics report.
In the following code:
\begin{circuitikz}
\draw (-3,0) to[battery] (-3,2);
\draw (-3,2) ...
0
votes
0answers
155 views
Circuitikz and logic gates in XeLaTeX [closed]
I want to use circuitikz to draw logic gates. Your response to a question gave me an inkling. I discovered that having run this with XeLaTeX has instructed, it runs but brings no picture. What do I ...
12
votes
3answers
522 views
Drawing a circuit structure in LaTeX
I want to create the following structure in LaTeX:
Unfortunately I couldn't find a similar example in the pgf manual using the same symbols. An answer just showing basically how to produce a ...
6
votes
0answers
274 views
How do I contribute to CircuiTikZ? [closed]
Update (29 Dec 2012)
The author has already update CircuiTikZ (Thank you, Massimo!). It should be integrated into the CTAN official repositories in a few days. The package is now hosted in Github for ...
2
votes
1answer
420 views
circuit schematic symbol for buffer with control input
circuitikz has an op amp component type with two inputs, output, and up and down ports, usually used for power supply rails. There's also a buffer component type (which I think is provided by tikz ...
1
vote
1answer
342 views
Complicated Tikz logic drawing
This is a follow-up to this question Complicated logic circuit drawing with Tikz - two input buffer gate?
Any ideas how can I draw this next element IODELAY2, should I use Resistance symbol?
For me ...
4
votes
1answer
412 views
Complicated logic circuit drawing with Tikz - two input buffer gate?
i'm trying to draw similar image with Tikz and Circuit Library, so far i'm stucked at drawing buffer gate with two labeled inputs (IBUFGDS and IBUFDS), standard library have a gate with only one ...
2
votes
1answer
126 views
Reverse labels without reversing the coordinates in circuitikz
How do I flip the label to the bottom without having to flip the coordinates?
\documentclass[preview, american, convert]{standalone}
\usepackage[siunitx]{circuitikz}
\begin{document}
...
6
votes
1answer
220 views
How to make my logic circuit drawn by circuitikz look nicer?
\documentclass{article}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz} \draw
(0,3) node[not port] (mynot1) {}
(mynot1.in) node[anchor=east] {$r$}
(mynot1.out) node[anchor=south] ...
6
votes
1answer
1k views
CircuitTikZ - Combine Tripoles with resistors
I'm just learning how to use CircuitTikZ to draw circuits, and I am trying to draw a good looking BJT biasing circuit. But I am having making the resistors across from each other look even, and since ...
4
votes
1answer
325 views
draw single pole double throw switch in circuitikz
I am new to circuitikz so this question may be too easy for some of you. I want to draw a single pole double throw switch in circuitikz. It can be done with "spdt". However I don't find any example of ...
2
votes
2answers
372 views
Circuitikz: polar capacitor terminals polarity labels are wrong
When using circuitikz to draw some circuit pictures, I noticed that the terminal polarity labels are incorrect (I believe) for polar capacitors. Consider the following:
\documentclass{article}
...
2
votes
1answer
231 views
Cannot manipulate nodes in tikz
I am using the following code
\documentclass[11pt,a4paper]{book}
\usepackage{tikz}
\usepackage[american voltages, american currents]{circuitikz}
\usetikzlibrary{%
calc,%
fadings,%
shadings%
}
...
2
votes
2answers
394 views
Circuitikz different ground symbol
Is it possible to make circuitikz draw a different ground symbol?
I would like to have a ground symbol with only one horizontal line.
Thanks.
3
votes
2answers
449 views
Labeling a circuit element with its symbol and value on both sides
I have modified the circuit code given in Voltage sign convention (European vs. American) in Circuitikz to serve my presentation in circuit making. However, I am unable to change the voltage source ...
5
votes
1answer
363 views
Set label name on two lines in CircuiTikZ
I'm a very beginner in using circuitikz in my tex documents.
I'd like to obtain a label that shows both the part name and the component value.
Looking in this forum I found this solution:
...
3
votes
1answer
522 views
Circuitikz - IC circuit with relative coordinates
I've represented an IC circuit using circuitikz, but it's a bit too rough to what I prefer. In particular I would like to use relative coordinates in this case and connect them to the ``IC device'' so ...
3
votes
0answers
247 views
Display ICs with circuitikz
How can I represent a IC using circuitikz?
I'm thinking of something like this:
I checked the whole manual and searched this information on google, but found nothing. It's hard to believe that no ...
6
votes
1answer
456 views
Using circuitikz, how do I make a ground node and link to it from several others?
I'd like to get two or three nodes linking to a ground symbol (this is not an electric circuit), as in this attempt:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
...
7
votes
1answer
512 views
Drawing a motor shaft in TikZ
I'd like to create a picture like the one with TikZ:
I've already created the electrical part using circuitikz. I'd like to add the part on the right (the motor's shaft with arrows), but don't know ...
6
votes
3answers
5k views
Drawing circuit diagrams (with logic gates) in LaTeX
I'm having some difficult drawing circuit diagrams with logic gates in LaTeX. I've tried with circuitikz and pst-circ.
\begin{pspicture}(-1,-1)(5,3)
\logicand[ninputs=2,invertinputa=true, ...
13
votes
0answers
585 views
Industrial schematics [closed]
I'm investigating if it is possible to generate electrical schematics for industrial machinery with the LaTeX ecosystem. They are quite different from electronic circuits because are developed ...
4
votes
1answer
175 views
Increasing number of ports in circuitikz gate
Is it possible to add two ports to the gates (nand, and, or, not) in circuitikz on the top and bottom for reference voltages in a similar fashion to how they exist for the op amp?
5
votes
1answer
430 views
How to make the code of a circuitikz diagram more flexible?
I am a beginner in LaTeX, and TikZ, trying to use them for industrial documents.
The sample code below (largely made with previous help) shows a circuit made with circuitikz. However I have now the ...