diff options
author | Karl Berry <karl@freefriends.org> | 2007-06-17 23:22:38 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-06-17 23:22:38 +0000 |
commit | 5c5c7843fbd37c6960799b6e1a32d5948966316c (patch) | |
tree | ea73f6b5ba799656992ebe2f34beccd2555f1342 /Master/texmf-dist/tex/plain | |
parent | f0c1f4cdb9fad83f293fd91d194538425f9f7633 (diff) |
pgf 1.18 (15jun07)
git-svn-id: svn://tug.org/texlive/trunk@4459 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/plain')
4 files changed, 62 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex index f04628f835c..9156d1b9b85 100644 --- a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex @@ -13,7 +13,7 @@ \input pgfrcs.tex -\ProvidesPackageRCS $Header: /cvsroot/pgf/pgf/plain/pgf/basiclayer/pgf.tex,v 1.6 2006/10/16 22:33:01 tantau Exp $ +\ProvidesPackageRCS $Header: /cvsroot/pgf/pgf/plain/pgf/basiclayer/pgf.tex,v 1.7 2007/01/01 13:51:54 tantau Exp $ \input pgfcore.tex \input pgfbaseshapes.tex @@ -22,6 +22,7 @@ \input pgfbaselayers.tex \input pgfbasesnakes.tex \input pgfbasepatterns.tex +\input pgfbasematrix.tex \catcode`\@=\pgfatcode diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex new file mode 100644 index 00000000000..e51d73eb542 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex @@ -0,0 +1,19 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbasematrixatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex +\input pgfbasematrix.code.tex + +\catcode`\@=\pgfbasematrixatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex b/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex new file mode 100644 index 00000000000..b26fbc8c356 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex @@ -0,0 +1,23 @@ +% Copyright 2007 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\ifx\pgfmathincluded\undefined +\def\pgfmathincluded{} + +\edef\pgfmathatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfsys.tex +\input pgfmath.code.tex +\catcode`\@=\pgfmathatcode + +\fi + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex b/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex new file mode 100644 index 00000000000..768357527ae --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex @@ -0,0 +1,18 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + +\edef\pgfcalendaratcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfrcs.tex +\input pgfcalendar.code.tex + +\catcode`\@=\pgfcalendaratcode + +\endinput |