diff options
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 |