\usepackage[american voltages]{circuitikz}
Search found 140 matches
- Mon May 27, 2013 6:11 pm
- Forum: Graphics, Figures & Tables
- Topic: Symbol Style in Circuits
- Replies: 1
- Views: 3665
Symbol Style in Circuits
For the voltmeter you could do this.
- Tue May 14, 2013 11:49 pm
- Forum: Graphics, Figures & Tables
- Topic: Greek Symbols in Title of Plot Topic is solved
- Replies: 4
- Views: 9469
Greek Symbols in Title of Plot Topic is solved
I'm trying to insert a Greek symbol/letter in my plots but can't seem to get it to work. Actually, all you had to do was change the double-quotes to single-quotes when you set the title: \documentclass{article} \usepackage{gnuplottex} \usepackage{graphicx} \begin{document} \begin{figure}[!ht] \begi...
- Thu Mar 07, 2013 2:41 am
- Forum: Math & Science
- Topic: Position of Limits for Triple Integral
- Replies: 2
- Views: 8939
Position of Limits for Triple Integral
Maybe you've found a bug in the default Computer Modern math font package. Because if you switch to a different math font package, like txfonts or fourier, the infinity sign is centered along the top:
- Tue Mar 05, 2013 8:44 pm
- Forum: General
- Topic: Mismatch in Document Quality on Screen and on Paper
- Replies: 4
- Views: 3197
Mismatch in Document Quality on Screen and on Paper
The choice of fonts can make a big difference in printed output. Generally serif fonts look better for printing, while sans serif fonts look better on a screen. Try putting this in your preamble and see if it makes a difference (don't load the bera package if you do this): \usepackage[T1]{fontenc} \...
- Tue Mar 05, 2013 7:53 pm
- Forum: Graphics, Figures & Tables
- Topic: Line Corners in Circuit
- Replies: 1
- Views: 2561
Line Corners in Circuit
I followed the circuitikz example here , and it compiled fine. But upon inspecting the corners of the circuit I found that the lines were not joined properly: Here's a magnified image of what I'm talking about circuitikz.png That's the upper right corner, and as you can see the corner is jagged. Th...
- Thu Nov 29, 2012 3:57 am
- Forum: Graphics, Figures & Tables
- Topic: makecirc | Circuit Diagrams with MetaPost
- Replies: 2
- Views: 3370
makecirc | Circuit Diagrams with MetaPost
Can anybody help me use one of their examples? I have installed the package. Sure. Here's how you could make a document that includes the circuit in Figure 6 on page 17 of the MakeCirc-en.pdf documentation file. 1. Create a file called mycircuit.mp with these contents: input makecirc; initlatex(&qu...
- Sun Aug 26, 2012 6:42 pm
- Forum: Graphics, Figures & Tables
- Topic: How can I draw plots in LaTeX? Topic is solved
- Replies: 69
- Views: 33203
How can I draw plots in LaTeX? Topic is solved
Why is better using gnuplot as two separate progrmas? For precisely the reason you're having trouble trying to use them together. :D It's just much easier to use gnuplot and LaTeX separately. Another advantage is that for large documents you don't have to wait a long time for the LaTeX compilation ...
- Sun Aug 26, 2012 6:36 pm
- Forum: Graphics, Figures & Tables
- Topic: Fill a plane in TikZ
- Replies: 4
- Views: 3444
Fill a plane in TikZ
Define (a),...,(h) as coordinates , not as nodes: \coordinate[label=left:{$A$}] (a) at (0,0,0); \coordinate[label=right:{$B$}] (b) at (1,0,0); \coordinate[label=right:{$C$}] (c) at (1,0,1); \coordinate[label=left:{$D$}] (d) at (0,0,1); \coordinate[label=left:{$E$}] (e) at (0,1,0); \coordinate[label=...
- Sun Aug 26, 2012 7:28 am
- Forum: Graphics, Figures & Tables
- Topic: How can I draw plots in LaTeX? Topic is solved
- Replies: 69
- Views: 33203
How can I draw plots in LaTeX? Topic is solved
If you want to use gnuplot with LaTeX, I'd recommend using them as separate programs instead of trying to call gnuplot directly from LaTeX. Gnuplot has two terminal types which produce LaTeX-friendly output: epslatex and lua. Both of those draw only the graphics parts and leave the text rendering to...
- Sun Jul 15, 2012 8:10 pm
- Forum: Graphics, Figures & Tables
- Topic: tikz-3dplot | Spherical Plot without visible Lines
- Replies: 10
- Views: 7477
tikz-3dplot | Spherical Plot without visible Lines
tikZ cannot handle (in)visible lines and areas ... It sort of can, with the transparent!0 color, though it's still slightly visible. Alternatively you could set the opacity of the line to 0.0: that is not handled by tikZ ... No, you're wrong. Did you even try that miniexample I gave? Here's a full ...