The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
79 views

How can I force an array overflow?

I have a very odd problem related to the Portland Group FORTRAN 90 compiler. I am trying to run a code that relies on array overflow to work properly. I did not write this code! The originators had to ...
0
votes
2answers
122 views

How could a simple optional argument lead to data corruption?

I have a FORTRAN code with a routine: SUBROUTINE READ_NC_VALS(NCID, RECID, VARNAME, VARDATA) integer ncid, recid character*(*) varname real*8 vardata dimension vardata(15,45,75) etc. I want to add ...
0
votes
0answers
246 views

Annotating external PDF graphics with TikZ/PGF [closed]

I tried the solution proposed in : http://tex.stackexchange.com/questions/1449/how-can-should-i-include-annotated-images However, the coordinates don't match with the coordinates I used when plotting ...
2
votes
2answers
507 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 ...
0
votes
1answer
499 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. ...
1
vote
2answers
3k views

Simple plot with pgfplots and LaTeX

I've just been searching like an hour on how to draw a simple function in LaTeX, for example f(x)=x^2. The examples I've tried did not work for some unknown reason, most probably because pdflatex ...
4
votes
1answer
389 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 ...
2
votes
1answer
355 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 ...
15
votes
3answers
2k views

Software to draw graphical models in plate notation

So I see graphical models expressed in plate notation in research papers and online all the time (for example: http://www.cs.princeton.edu/~blei/papers/BleiNgJordan2003.pdf). Is there a quick and ...
0
votes
1answer
1k views

Improving a Tikz Diagram

I have just finished my first diagram in Tikz. It looks as I wanted it to, but am unhappy with how I have 'coded' it: \begin{tikzpicture} [node distance=14mm, item/.style={rounded corners,rectangle, ...
9
votes
1answer
3k 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 ...
3
votes
1answer
1k 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: ...
2
votes
1answer
2k 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, ...
0
votes
1answer
549 views

Positioning of hyperlinked shapes with matrix in tikz

I can draw a hyperlinked shape in tikz using the following code: \documentclass{article} \usepackage{tikz} \usetikzlibrary{matrix} \usepackage{hyperref} \begin{document} \begin{tikzpicture} \node {% ...
0
votes
1answer
1k views

Problem with pgfplot label

I want to draw an x-y-diagram with axis labels. Unfortunately the ylabel is misplaced. It looks as depending on the actual data. When the other data line in the sample below is used instead of the ...
3
votes
2answers
2k 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
410 views

The way to find out whole picture width in PGF (Latex)

I've got a latex macro that draws a picture using PGF and Tikz according to given parameters. The width of picture drawn depends on these parameters. PGF automatically calculates the resulting width ...
5
votes
1answer
8k 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 ...
17
votes
2answers
26k 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 ...
1
vote
2answers
919 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]{% ...
12
votes
2answers
3k 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 ...