Tagged Questions

TikZ is a set of higher-level TeX macros for producing vector graphics that use PGF (Portable Graphics Format)

learn more… | top users | synonyms

23
votes
5answers
5k views

Standalone diagrams with TikZ?

I'm using TikZ to draw diagrams in LaTeX that I then want to isolate as image files to put online. My guess is there is a way to extract these diagrams directly without having to tease them out of ...
9
votes
3answers
3k views

What is the correct way to center \tikzpicture?

What is the correct way to cause a \tikzpicture to be centered, using LaTeX? By default it appears to be aligned with the left margin.
8
votes
6answers
3k views

Latex: stretchable curly braces outside math

I am producing some latex beamer slides (but I think it is not a beamer specific question per se). I have the following: \begin{itemize} \item Issue1 \item Issue2 \item Issue3 \end{itemize} Now, I ...
8
votes
2answers
1k views

How to get one component of a tikz/PGF coordinate?

I'm trying to draw a horizontal line across my diagram. The Y coordinate of the line should be halfway between points a and b (a is below b). The left and right endpoints of the line are on the ...
7
votes
1answer
2k views

Tikz: horizontal centering of group of nodes

I need to align each row of the graph to the center. I am trying to do it with xshift. Here the code: \begin{tikzpicture}[node distance=1.5cm, auto, text centered] \tikzstyle{every ...
6
votes
1answer
210 views

Getting data from a chart that is displayed on a website

I was asked to draw a graph like this one using Latex (more precisely, tikz and/or pgf). This would not be a problem if I had the data, but I don't. All I have is the website from where graphs can ...
6
votes
5answers
4k views

How do PStricks and TikZ compare for ease of learning and for quality of API design?

My group uses Literate Programming for most of our source code---this means that internal documentation is written using LaTeX. We have been using PStricks for fancy technical diagrams of the system, ...
5
votes
2answers
363 views

Creating a tikz picture with 2 plots in a row

I've got a question concerning the creation of two plots in a row, using R with Package tikz device to send the tikz to Latex. What I want to do is, plotting 2 graphs in a row. What I did first was to ...
5
votes
3answers
783 views

Problems with ggplot and pgfSweave

I started using Sweave some time ago. However, like most people I encountered pretty soon a major problem: Speed. Sweaving a large document takes ages to run, which makes efficient working quite ...
5
votes
2answers
9k views

How to control font sizes in pgf/tikz graphics in latex?

I'm creating graphs in pgf/tikz. When I use these in my document they are scaled, several are in minipage/subfig like environments. When this happens the font sizes are scaled with the graphics making ...
4
votes
1answer
220 views

pgfSweave removes tikz-generated diagram

I run pgfSweave on a document that includes both diagrams drawn inline using tikz, and inline R-code. The R-code is executed and perfectly rendered but the diagrams don't appear in the final PDF. ...
4
votes
1answer
242 views

Creating the EUR sign with pgf/tikz

I'm trying to reconstruct the euro sign in TikZ. My basic guide is http://upload.wikimedia.org/wikipedia/commons/5/57/Euro_Construction.svg The problem I've run into is that I can compute all the ...
4
votes
1answer
352 views

How to make the grayed-round box using tiks

This is a follow-up question asked here. I need to make a round-grayed box as is shown. Based on the answers, I tried something, but not so fruitful. So, another questions coming. I came up with ...
4
votes
2answers
434 views

Where can I get a printed TikZ manual?

The manual for PGF and TikZ weighs in at 560 pages. I would like to have a printed version with a decent binding. Does anyone know where I can get one?
4
votes
1answer
525 views

How can I include a .eps figure within a Tikz simple flow chart?

I would like to create a simple flow chart in latex with the TikZ package similar to the following example http://www.texample.net/tikz/examples/simple-flow-chart/ However I would like to include ...
4
votes
4answers
1k views

fresh installation of PGF/TikZ crashes, why?

I have a clean CentOS 5.5 machine with tetex installed. Next, I installed PGF/TikZ: wget http://media.texample.net/pgf/builds/pgfCVS2010-06-02_TDS.zip unzip pgfCVS2010-06-02_TDS.zip \cp -r tex ...
4
votes
1answer
906 views

tikz: set appropriate x value for a node

This question resulted from the question here I want to produce a curly brace which spans some lines of text. The problem is that I have to align the x coordinate manually, which is not a clean ...
4
votes
2answers
338 views

Coping with nodes that contain text that goes below baseline in tikz

I have the following problem with Tikz/Latex: I have some nodes that contain text. Most text doesn't have letters that reach below the baseline. But for those nodes where it happens, the ratio and ...
3
votes
2answers
494 views

Does anyone know a non-TeX equivalent for TikZ?

Until now i have used Graphviz to programmatically create diagrams and graphs. Recently, I found out about TikZ and I started loving it. However, it would be overkill in some of my intended uses to ...
3
votes
1answer
384 views

TikZDevice: Add \caption{} and \label{} to TikZ diagram using R

I've created a for loop that outputs several plots (via ggplot2) from R into a single .tex file using the tikzDevice package. This makes it easier to include multiple diagrams from within a latex ...
3
votes
5answers
715 views

Latex, TikZ and separate compilation of chapters and figures

I have fairly large Latex document with a lot of TikZ figures inside. I have a habit of frequent recompilation and it takes forever to compile it using pdflatex. Figures in TikZ take most of the time. ...
3
votes
1answer
609 views

pgf/tikz: String Symbols as Input Coordinates

I'm new to pgf so i was trying out some examples from the pgfplot manual. One example is especially relevant for my current task but, alas, it would not compile. Here is the code: ...
3
votes
1answer
2k views

Aligning matrix nodes in tikz

Another question about aligning nodes using matrices in tikz. Consider the following: \documentclass{article} \usepackage{tikz} \usetikzlibrary{matrix} \begin{document} \begin{tikzpicture} \matrix ...
3
votes
2answers
559 views

Compare floating point numbers in Latex

I am trying to use \ifthenelse to do a floating point comparison. This is the pgf/tikz code, which works if \y is integer only, but not otherwise: \foreach \y in {3,3.5,...,6} { ...
3
votes
1answer
4k views

Control font size in graphics in LaTeX when scaling in minipage/subfig?

I am using pgf/tikz graphics and I'm wondering how one can control the scaling of font sizes in the graphics when using them in minipage/subfig environments? Is there a way to manually set a ...
2
votes
0answers
37 views

Gnuplot TiKz Terminal Set Key Font Size

I am having an issue setting the font size of the key (i.e., legend) using Gnuplot with the TiKz terminal. Traditionally, one could add set key font "0,20" to Gnuplot which would change the size of ...
2
votes
2answers
241 views

gnuplot tikz terminal

How do I enable the tikz terminal in gnuplot on Mac Os X(10.6.8)? I have latex with working tikz. Now I installed lua from http://www.lua.org/ and Downloaded gnuplot4.4.4, unpacked it, and run $ ...
2
votes
1answer
317 views

Installing gnuplot with Lua-Tikz terminal on Mac Os X

I'm on mac os X and I have gnuplot installed via MacPorts. I want to be able to use the Lua-Tikz terminal (which is kind of present, I can find some gnuplot-tikz.lua files) but I can't. How do I ...
2
votes
1answer
366 views

Using macros with tikzpictures?

I tried to compress a tikzpicture using the following newcommand: \newcommand{\tchild}[3]{ child { node{#2} #3 edge from parent node[above]{#1} } } %intended usage: \tchild{edge label}{vertex ...
2
votes
2answers
320 views

How can I get bended edges in a TikZ graph?

I'm using TikZ to show Prim's algorithm, like in this example on texample.net. How can I get TikZ to create bended edges instead of the straight ones here?
2
votes
1answer
202 views

Tikzpicture on every page

How can I include a tikzpicture on every page? I would like to create a complicated document template (page should be framed, and have a table to hold document information both in the header and ...
2
votes
1answer
241 views

Incorrect alignment of nodes in subpictures

I am using tikz to typeset a diagram in a latex document. I have a grid of 'grid-diagrams', with each grid-diagram drawn as a separate tikz picture and then arranged into the grid as nodes. I want ...
2
votes
1answer
416 views

TikZ coding: How to create space between polygon and the nodes it surrounds?

I'm using TikX with LaTeX to draw a technical diagram. I'm trying to draw an irregular polygon around a group of named nodes in a tree. I've gotten as far as \draw [rounded corners, thick] (node ...
2
votes
1answer
891 views

How to only round selected corners in a fancytitle box with Tikz

If you take a look at http://www.texample.net/tikz/examples/boxes-with-text-and-math/ the boxes there are with rounded corners. In the examples, both the box itself and the title is a box. I want the ...
2
votes
2answers
414 views

How to have a fixed size number that depends on the slide in latex beamer / tikz?

I have a tikz picture with a circle node which has a number inside. I want this number to change with the slides but to be of fixed size. (-> not mess up the circle). This one isn't working, the ...
2
votes
3answers
579 views

Query regarding drawing TikZ figure

In this sample code, the author does the following \draw ($(closedStart.south) + (-.5em,0)$) edge[stateEdge] node[edgeLabel, xshift=-3em]{\emph{Passive open}} ($(listen.north) + ...
1
vote
2answers
128 views

What are the ways to create draw data structures for latex?

I tried tikz/pgf a bit but have not had much luck creating a nice diagram to visualize bitfields or byte fields of packed data structures (i.e. in memory). Essentially I want a set of rectangles ...
1
vote
1answer
322 views

Draw chemical laboratory equipment

I need to draw some chemical laboratory equiment setups. It will include Erlenmeyer flask, Bunsen burner and so on. Does TikZ provide support for such drawings?
1
vote
1answer
1k views

Problem with Gnuplot 4.4 and TikZ

I'm using Gnuplot 4.4, compiled with Lua support. It supposedly has the tikz terminal. I've successfully compiled my gnuplots to tex using "set terminal tikz". However, when adding this source to my ...
1
vote
1answer
520 views

How can I apply a style to existing tikz node on specific slides

This is what I'm trying to do \begin{tikzpicture} [node distance = 1cm, auto,font=\footnotesize, % STYLES every node/.style={node distance=1.3cm}, comment/.style={rectangle, inner ...
1
vote
1answer
1k views

How to Find Intersections with Ellipses in PGF/TikZ

I am trying to display a sphere in PGF/TikZ to illustrate the idea of great circles. The code for my current result is: \begin{tikzpicture} \tikzfading[name=fade right, left color=transparent!20, ...
1
vote
1answer
190 views

How to create diagrams for papers

I want to create some diagrams for some papers. Diagrams will contain some text, e.g. some console output. I need images for using also in html files. There is TikZ so can create images like this: ...
1
vote
1answer
586 views

Comprehensive list of Tikz-timing options

Anyone here a guru in Tikz-timing? I am looking for a way to label a timing diagram with annotations, but the vertical scale is too compressed. I couldn't find a comprehensive list of options for ...
1
vote
2answers
618 views

Trees and macros with tikz

I am trying to build my trees using macros but I don't get the result I want. Here is a minimal example: \documentclass{article} \usepackage{tikz} \usetikzlibrary{trees} \newcommand{\LeafNode}[1]{% ...
0
votes
0answers
9 views

Wrong tikz filepaths when included used input [migrated]

I'm using tikz for my thesis but have run into a small problem. In order to maintain some overview of the main tex file I have split all images into separate tikz files (This also allows me to edit ...
0
votes
1answer
30 views

Multiple Tikz-Trees in a subfigure-grouped figure row

How to put multiple Tikz trees in a subfigure-grouped figure row? As the provided screenshot indicates, every figure/ tree is put in a separate row. I guess that the tree width is > 50% of the line ...
0
votes
1answer
48 views

why am I getting \tikzexternaldisable as undefined with pgfSweave?

Simple case. R-2.13.2 pgfSweave 1.2.1 pgf 2.10 I define a very simple file to test with. \documentclass{article} \title{Testing pgfSweave figures with tikz device} \begin{document}\maketitle ...
0
votes
1answer
170 views

Using tikz to draw graph with multiple edges between each other

I am trying to draw a (undirected) graph using the Tikz package, such that there exist multiple edges between some nodes in the graph. Is it possible to do such a thing? I tried the following code to ...
0
votes
1answer
197 views

pgf/tikz: How to calculate half distance between the x coordinates?

I am trying to create a new node type like this: http://www.live-wtr.ru/leo/Tikz9.png but don't understand, how to calculate x3 = x1 + (x2 - x1) /2 Here I tried to do it, but in vain. ...
0
votes
0answers
404 views

pgfplots: Multiple (shifted) stacked plots in one diagram

How can I get multiple stacked plots (ybar stacked, stack plots=y) in one diagram, such that there are multiple stacked bars for the same x-coordinate, each slightly shifted? Is there a way to reset ...

1 2