Thierry | 2 Nov 2010 14:17
Picon
Favicon

Underfull \hbox with pgfonlayer (pgf 2.10)

Hello,
after installing pgf 2.10, I get a warning using pgfonlayer.
This warning depends on the size of the area to fit.

Below is a simple example.
When I change the value "node distance" to 2cm, the warning disappears.

I didn't have this problem with the previous version of pgf (2.00 ?).
(I have tested my minimal example with this previous version of pgf and it is OK)

Anyway, thanks to the developers for the upgrade!
Thierry

\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[TS1,T1]{fontenc}

\usepackage{tikz}
\usetikzlibrary{positioning,backgrounds,fit}

\begin{document}
\begin{tikzpicture}[node distance=3cm] %2cm no warning, 3cm warning : Underfull \hbox (badness 2318)
    \node (A) {A};
    \node (B) [right=of A] {B};
    \begin{pgfonlayer}{background}
        \node [fill=gray,fit=(A) (B)] {}; % if I put some large text in {} the warning disappears !
    \end{pgfonlayer}
\end{tikzpicture}
\end{document}


------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
Alfredo Correa | 3 Nov 2010 18:27
Picon

pdfcomment pdf-annotiation link around tikz curve.

Hi,

 I am trying to combine tikz with pdfcomment package to create pdf-annotation (a la http://mirror.ctan.org/macros/latex/contrib/pdfcomment/doc/example.pdf) but instead of around text (or node text) around a particular drawing curve.

What I tried so far failed, because either the pdf-annotation link is create around the node text or not showing at all around the curve. Is this at all possible?

This is the sample code:
% comment working but only at node:
        \draw[<-] (6.8,-.085) -- +(-1.6,.4) node[above] {
            \pdfmarkupcomment[style=mathpopup]{Elektron}{Elektron comment text}
%            Elektron %original text
        };
% comment around drawing not really creates a link at drawing:
    \pdfmarkupcomment[style=mathpopup]{   
        \draw[<-] (7,.4) -- +(-1.3,1) node[above] {Atomhülle} ;
    }{comment on drawing?}

pdf-annotation links can be created around includegraphics and even gets the shape of the vector graphics included but the thing doesn't work for tikz curves.
pdfcomment package can draw lines but these are not tikz lines and the idea is to use the arbitrary curves of tikz.

The full compilable document is attached. The document requires pdfcomment package and Acrobat Reader to see the pdf-annotations.

Thank you,
Alfredo


Attachment (example.tex): application/x-tex, 8 KiB
------------------------------------------------------------------------------
Achieve Improved Network Security with IP and DNS Reputation.
Defend against bad network traffic, including botnets, malware, 
phishing sites, and compromised hosts - saving your company time, 
money, and embarrassment.   Learn More! 
http://p.sf.net/sfu/hpdev2dev-nov
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
Michael Hallgren | 4 Nov 2010 15:38
Picon
Favicon

pdflatex versus xelatex

Hello,

I'm using the up-to-date CVS version of pgf/TikZ, and

mh <at> home:/tmp$ xelatex -v
XeTeX 3.1415926-2.2-0.9995.2 (TeX Live 2009)
kpathsea version 5.0.0
Copyright 2009 SIL International and Jonathan Kew.
There is NO warranty.  Redistribution of this software is
covered by the terms of both the XeTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the XeTeX source.
Primary author of XeTeX: Jonathan Kew.
Compiled with ICU version 3.8.1 [with modifications for XeTeX]
Compiled with zlib version 1.2.3; using 1.2.3
Compiled with FreeType2 version 2.3.9; using 2.3.9
Compiled with fontconfig version 2.3.1; using 2.6.0
Compiled with libpng version 1.2.39; using 1.2.39
Compiled with xpdf version 3.02pl3

mh <at> home:/tmp$

and

mh <at> home:/tmp$ pdflatex -v
pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009)
kpathsea version 5.0.0
Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
There is NO warranty.  Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh
(pdfTeX).
Compiled with libpng 1.2.39; using libpng 1.2.39
Compiled with zlib 1.2.3; using zlib 1.2.3
Compiled with xpdf version 3.02pl3

mh <at> home:/tmp$ 

The following produces fine PDF with pdflatex, but fails to place the
labels with xelatex. It actually writes "left:A" at the default label
position, rather than placing A to the left of the node.

\begin{center}
\begin{tikzpicture}
\path [draw, thick] (0,0) coordinate [label=above:$A$] (A)
-- ++(-125:2cm) coordinate [label=left:$B$] (B)
-- ++(-35:2cm) coordinate [label=below:$C$] (C)
-- ++(55:2cm) coordinate [label=right:$D$] (D)
-- cycle;
\end{tikzpicture}
\end{center}

Someone seen this? Fix?

Cheers,

m

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
Michael Hallgren | 4 Nov 2010 16:10
Picon
Favicon

Re: pdflatex versus xelatex

Le jeudi 04 novembre 2010 à 15:38 +0100, Michael Hallgren a écrit :
> Hello,

Hi,

Found that \shorthandoff{:} makes xelatex produce the desired PDF.

Cheers,

mh

> 
> I'm using the up-to-date CVS version of pgf/TikZ, and
> 
> mh <at> home:/tmp$ xelatex -v
> XeTeX 3.1415926-2.2-0.9995.2 (TeX Live 2009)
> kpathsea version 5.0.0
> Copyright 2009 SIL International and Jonathan Kew.
> There is NO warranty.  Redistribution of this software is
> covered by the terms of both the XeTeX copyright and
> the Lesser GNU General Public License.
> For more information about these matters, see the file
> named COPYING and the XeTeX source.
> Primary author of XeTeX: Jonathan Kew.
> Compiled with ICU version 3.8.1 [with modifications for XeTeX]
> Compiled with zlib version 1.2.3; using 1.2.3
> Compiled with FreeType2 version 2.3.9; using 2.3.9
> Compiled with fontconfig version 2.3.1; using 2.6.0
> Compiled with libpng version 1.2.39; using 1.2.39
> Compiled with xpdf version 3.02pl3
> 
> mh <at> home:/tmp$
> 
> and
> 
> mh <at> home:/tmp$ pdflatex -v
> pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009)
> kpathsea version 5.0.0
> Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
> There is NO warranty.  Redistribution of this software is
> covered by the terms of both the pdfTeX copyright and
> the Lesser GNU General Public License.
> For more information about these matters, see the file
> named COPYING and the pdfTeX source.
> Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh
> (pdfTeX).
> Compiled with libpng 1.2.39; using libpng 1.2.39
> Compiled with zlib 1.2.3; using zlib 1.2.3
> Compiled with xpdf version 3.02pl3
> 
> mh <at> home:/tmp$ 
> 
> The following produces fine PDF with pdflatex, but fails to place the
> labels with xelatex. It actually writes "left:A" at the default label
> position, rather than placing A to the left of the node.
> 
> 
> \begin{center}
> \begin{tikzpicture}
> \path [draw, thick] (0,0) coordinate [label=above:$A$] (A)
> -- ++(-125:2cm) coordinate [label=left:$B$] (B)
> -- ++(-35:2cm) coordinate [label=below:$C$] (C)
> -- ++(55:2cm) coordinate [label=right:$D$] (D)
> -- cycle;
> \end{tikzpicture}
> \end{center}
>  
> Someone seen this? Fix?
> 
> Cheers,
> 
> m
> 
> 
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a 
> Billion" shares his insights and actions to help propel your 
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________ pgf-users mailing list
pgf-users <at> lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/pgf-users

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
Picon
Favicon

Re: pdflatex versus xelatex

Sounds like a shorthand character problem which in latex is usually
related to babel. Usually, sorrounding your tikzpicture environment with
\shorthandoff{:} - \shorthandon{:} commands fixes it. However, in xetex,
polyglossia is usually used and I'm not sure it provides shorthand
commands.

Sebastian

> Hello,
>
> I'm using the up-to-date CVS version of pgf/TikZ, and
>
> mh <at> home:/tmp$ xelatex -v
> XeTeX 3.1415926-2.2-0.9995.2 (TeX Live 2009)
> kpathsea version 5.0.0
> Copyright 2009 SIL International and Jonathan Kew.
> There is NO warranty.  Redistribution of this software is
> covered by the terms of both the XeTeX copyright and
> the Lesser GNU General Public License.
> For more information about these matters, see the file
> named COPYING and the XeTeX source.
> Primary author of XeTeX: Jonathan Kew.
> Compiled with ICU version 3.8.1 [with modifications for XeTeX]
> Compiled with zlib version 1.2.3; using 1.2.3
> Compiled with FreeType2 version 2.3.9; using 2.3.9
> Compiled with fontconfig version 2.3.1; using 2.6.0
> Compiled with libpng version 1.2.39; using 1.2.39
> Compiled with xpdf version 3.02pl3
>
> mh <at> home:/tmp$
>
> and
>
> mh <at> home:/tmp$ pdflatex -v
> pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009)
> kpathsea version 5.0.0
> Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
> There is NO warranty.  Redistribution of this software is
> covered by the terms of both the pdfTeX copyright and
> the Lesser GNU General Public License.
> For more information about these matters, see the file
> named COPYING and the pdfTeX source.
> Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh
> (pdfTeX).
> Compiled with libpng 1.2.39; using libpng 1.2.39
> Compiled with zlib 1.2.3; using zlib 1.2.3
> Compiled with xpdf version 3.02pl3
>
> mh <at> home:/tmp$
>
> The following produces fine PDF with pdflatex, but fails to place the
> labels with xelatex. It actually writes "left:A" at the default label
> position, rather than placing A to the left of the node.
>
>
> \begin{center}
> \begin{tikzpicture}
> \path [draw, thick] (0,0) coordinate [label=above:$A$] (A)
> -- ++(-125:2cm) coordinate [label=left:$B$] (B)
> -- ++(-35:2cm) coordinate [label=below:$C$] (C)
> -- ++(55:2cm) coordinate [label=right:$D$] (D)
> -- cycle;
> \end{tikzpicture}
> \end{center}
>
> Someone seen this? Fix?
>
> Cheers,
>
> m
>
>
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a
> Billion" shares his insights and actions to help propel your
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev_______________________________________________
> pgf-users mailing list
> pgf-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pgf-users
>

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
Alain Matthes | 4 Nov 2010 16:23
Picon
Gravatar

v2.1 bug with x^y

Hi

\documentclass[10pt]{article}
\usepackage{tikz}
\pagestyle{empty} 

\begin{document}
\begin{tikzpicture}  
\draw[->,color=black] (0,-5) -- (0,5);
\draw[->,color=black] (-8,0) -- (8,0);  

%\draw[color=blue,samples=200,domain=0.001:8] plot (\x,{exp(1.0/3*ln(\x)});  
\draw[color=green,smooth,samples=100] plot[domain=0.01:8.0] (\x,{\x^(1./3)});
% \draw[color=red,samples=400,domain=0.0001:8] plot function {x**(1./3)}; 
\end{tikzpicture}
\end{document}

\x^(1/3) gives a bad result

correct is the syntax with exp and ln or with gnuplot

correct also but very slow

\documentclass[10pt]{article}
\usepackage{fp,tikz}
\usetikzlibrary{fixedpointarithmetic} 
\pagestyle{empty} 

\begin{document}
\begin{tikzpicture}  
\draw[->,color=black] (0,-5) -- (0,5);
\draw[->,color=black] (-8,0) -- (8,0);  

%\draw[color=blue,samples=200,domain=0.001:8] plot (\x,{exp(1.0/3*ln(\x)});  
\pgfkeys{/pgf/fixed point arithmetic} 
\draw[color=green,smooth,samples=100] plot[domain=0.01:8.0] (\x,{\x^(1./3)});
% \draw[color=red,samples=400,domain=0.0001:8] plot function {x**(1./3)}; 
\end{tikzpicture}
\end{document}

Best Regards

Alain

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
Michael Hallgren | 4 Nov 2010 17:33
Picon
Favicon

Re: pdflatex versus xelatex

Le jeudi 04 novembre 2010 à 16:03 +0100, Sebastián PENA SALDARRIAGA a
écrit :
> Sounds like a shorthand character problem which in latex is usually
> related to babel. Usually, sorrounding your tikzpicture environment with
> \shorthandoff{:} - \shorthandon{:} commands fixes it. However, in xetex,
> polyglossia is usually used and I'm not sure it provides shorthand
> commands.

Yes, as you suggest, babel was the cause for this, and \shorthandoff{:}
- \shorthandon{:} solved the problem.

mh

P.S. Yes, I'll take a look at lualatex as well.

> 
> Sebastian
> 
> > Hello,
> >
> > I'm using the up-to-date CVS version of pgf/TikZ, and
> >
> > mh <at> home:/tmp$ xelatex -v
> > XeTeX 3.1415926-2.2-0.9995.2 (TeX Live 2009)
> > kpathsea version 5.0.0
> > Copyright 2009 SIL International and Jonathan Kew.
> > There is NO warranty.  Redistribution of this software is
> > covered by the terms of both the XeTeX copyright and
> > the Lesser GNU General Public License.
> > For more information about these matters, see the file
> > named COPYING and the XeTeX source.
> > Primary author of XeTeX: Jonathan Kew.
> > Compiled with ICU version 3.8.1 [with modifications for XeTeX]
> > Compiled with zlib version 1.2.3; using 1.2.3
> > Compiled with FreeType2 version 2.3.9; using 2.3.9
> > Compiled with fontconfig version 2.3.1; using 2.6.0
> > Compiled with libpng version 1.2.39; using 1.2.39
> > Compiled with xpdf version 3.02pl3
> >
> > mh <at> home:/tmp$
> >
> > and
> >
> > mh <at> home:/tmp$ pdflatex -v
> > pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009)
> > kpathsea version 5.0.0
> > Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
> > There is NO warranty.  Redistribution of this software is
> > covered by the terms of both the pdfTeX copyright and
> > the Lesser GNU General Public License.
> > For more information about these matters, see the file
> > named COPYING and the pdfTeX source.
> > Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh
> > (pdfTeX).
> > Compiled with libpng 1.2.39; using libpng 1.2.39
> > Compiled with zlib 1.2.3; using zlib 1.2.3
> > Compiled with xpdf version 3.02pl3
> >
> > mh <at> home:/tmp$
> >
> > The following produces fine PDF with pdflatex, but fails to place the
> > labels with xelatex. It actually writes "left:A" at the default label
> > position, rather than placing A to the left of the node.
> >
> >
> > \begin{center}
> > \begin{tikzpicture}
> > \path [draw, thick] (0,0) coordinate [label=above:$A$] (A)
> > -- ++(-125:2cm) coordinate [label=left:$B$] (B)
> > -- ++(-35:2cm) coordinate [label=below:$C$] (C)
> > -- ++(55:2cm) coordinate [label=right:$D$] (D)
> > -- cycle;
> > \end{tikzpicture}
> > \end{center}
> >
> > Someone seen this? Fix?
> >
> > Cheers,
> >
> > m
> >
> >
> > ------------------------------------------------------------------------------
> > The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> > David G. Thomson, author of the best-selling book "Blueprint to a
> > Billion" shares his insights and actions to help propel your
> > business during the next growth cycle. Listen Now!
> > http://p.sf.net/sfu/SAP-dev2dev_______________________________________________
> > pgf-users mailing list
> > pgf-users <at> lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/pgf-users
> >
> 
> 
> 
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a 
> Billion" shares his insights and actions to help propel your 
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> pgf-users mailing list
> pgf-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pgf-users

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
GD Taylor | 4 Nov 2010 18:02
Picon
Picon
Favicon

Dashdot Lines?

Hi,

Can anyone advise on creating custom line styles for tikz? I currently 
have a large number of graphs which use various combinations of dotted, 
dashed and solid single/double/triple lines, in any of four colours, 
which I'm trying to convert to black-and-white without losing 
information. Ideally I'm after a line style that alternates dots and 
dashes, but anything sufficiently different to the existing styles 
(rather than, say, mixing densely dotted, dotted and dashed in the same 
plot) would help.

Thanks,

Graeme

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
JL Diaz | 4 Nov 2010 18:33
Picon

Re: Dashdot Lines?

Page 133 of pgfmanual, section 14.3.2 "Graphic parameters: dash pattern" contains an example of kind of dot-dash pattern. Of course you can define a style for that, for example:


\tikzset{dashdot/.style={dash pattern=on .4pt off 3pt on 4pt off 3pt}}

Saludos,
--JL Diaz


On Thu, Nov 4, 2010 at 6:02 PM, GD Taylor <magdt <at> bristol.ac.uk> wrote:
Hi,

Can anyone advise on creating custom line styles for tikz? I currently
have a large number of graphs which use various combinations of dotted,
dashed and solid single/double/triple lines, in any of four colours,
which I'm trying to convert to black-and-white without losing
information. Ideally I'm after a line style that alternates dots and
dashes, but anything sufficiently different to the existing styles
(rather than, say, mixing dsely dotted, dotted and dashed in the same
plot) would help.

Thanks,

Graeme

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a
Billion" shares his insights and actions to help propel your
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users
Stefan Pinnow | 4 Nov 2010 18:56
Picon

Re: Dashdot Lines?

Hello all,

> Page 133 of pgfmanual, section 14.3.2 "Graphic parameters: dash pattern"
> contains an example of kind of dot-dash pattern. Of course you can 
> define a style for that, for example:
> 
> \tikzset{dashdot/.style={dash pattern=on .4pt off 3pt on 4pt off 3pt}}
> 
> Saludos,
> --JL Diaz
> 
> 
> 
> On Thu, Nov 4, 2010 at 6:02 PM, GD Taylor <magdt <at> bristol.ac.uk> wrote:
> 
> 
> 	Hi,
> 
> 	Can anyone advise on creating custom line styles for tikz? I
currently
> 	have a large number of graphs which use various combinations of
dotted,
> 	dashed and solid single/double/triple lines, in any of four colours,
> 	which I'm trying to convert to black-and-white without losing
> 	information. Ideally I'm after a line style that alternates dots and
> 	dashes, but anything sufficiently different to the existing styles
> 	(rather than, say, mixing dsely dotted, dotted and dashed in the
same
> 	plot) would help.

Version 2.1 is containing some more styles than the versions before. Have a
look at page 157ff.

Best regards,
Stefan
Attachment (smime.p7s): application/pkcs7-signature, 4927 bytes
------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
pgf-users mailing list
pgf-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pgf-users

Gmane