FS#22457 - [texlive-pictures] Bugs in the PGF callout code

Attached to Project: Arch Linux
Opened by Piyush P Kurur (ppk) - Sunday, 16 January 2011, 12:53 GMT
Last edited by Rémy Oudompheng (remyoudompheng) - Monday, 13 June 2011, 10:53 GMT
Task Type Bug Report
Category Upstream Bugs
Status Closed
Assigned To Francois Charette (Firmicus)
Rémy Oudompheng (remyoudompheng)
Architecture All
Severity High
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 1
Private No

Details

Description: Problems compiling callouts with PGF package.
This is a known upstream bug. See for example

http://newsgroups.derkeiler.com/Archive/Comp/comp.text.tex/2010-12/msg00595.html

Updating to latest pgf should fix it

Additional info:

Needs pgf packages (texlive-pictures I guess)


Steps to reproduce: Compile the following latex file

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.callouts}
\begin{document}
\begin{tikzpicture}
\node at (0,0) [shape=rectangle, draw]{origin};
\node at (3,4) [ellipse callout, callout absolute pointer={(0,0)}, draw]%
{Test node};
\end{tikzpicture}
\end{document}

This task depends upon

Closed by  Rémy Oudompheng (remyoudompheng)
Monday, 13 June 2011, 10:53 GMT
Reason for closing:  Fixed
Additional comments about closing:  TeXLive 2011 packages have the fix.
Comment by Chris Kottke (ckottke) - Saturday, 19 March 2011, 21:42 GMT
The placement of nodes in general is broken -- all nodes seem to be drawn at (0,0). A minimal example is as follows:

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
(0,0) \node {$X$};
(10,0) \node {$Y$};
\end{tikzpicture}
\end{document}

X and Y are rendered at the same location.

This appears to be a problem with the current release pgf 2.10. Downgrading to pgf 2.00 in my local texmf tree fixes the problem for me.

Loading...