From a4b87c73cc1640a2957c128f4e53d03f464f6eb3 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sat, 29 Aug 2015 22:52:14 +0000 Subject: pgf (29aug15) git-svn-id: svn://tug.org/texlive/trunk@38237 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/generic/pgf/ChangeLog | 5 ++++ Master/texmf-dist/doc/generic/pgf/FILES | 5 ++-- Master/texmf-dist/doc/generic/pgf/pgfmanual.pdf | Bin 8083180 -> 10007574 bytes .../text-en/pgfmanual-en-gd-algorithms-in-c.tex | 27 +++------------------ .../testsuite/mathtest/unittest_luamathparser.pdf | Bin 15341 -> 0 bytes .../tex/generic/pgf/utilities/pgfrcs.code.tex | 4 +-- 6 files changed, 12 insertions(+), 29 deletions(-) delete mode 100644 Master/texmf-dist/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.pdf (limited to 'Master') diff --git a/Master/texmf-dist/doc/generic/pgf/ChangeLog b/Master/texmf-dist/doc/generic/pgf/ChangeLog index 2c20dd53a5d..fa06356be52 100644 --- a/Master/texmf-dist/doc/generic/pgf/ChangeLog +++ b/Master/texmf-dist/doc/generic/pgf/ChangeLog @@ -1,3 +1,8 @@ +2015-08-29 Christian Feuersaenger + + - Release 3.0.1a containing a corrected manual (the one of 3.0.1 + accidentally deactivated examples in the manual) + 2015-08-07 Christian Feuersaenger - Release 3.0.1! diff --git a/Master/texmf-dist/doc/generic/pgf/FILES b/Master/texmf-dist/doc/generic/pgf/FILES index f1d194c32e1..01e13626085 100644 --- a/Master/texmf-dist/doc/generic/pgf/FILES +++ b/Master/texmf-dist/doc/generic/pgf/FILES @@ -171,8 +171,8 @@ pgf/doc/generic/pgf/version-for-luatex/en/Makefile pgf/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex pgf/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex pgf/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg -pgf/doc/generic/pgf/version-for-pdftex/en/Makefile pgf/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex +pgf/doc/generic/pgf/version-for-pdftex/en/Makefile pgf/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg pgf/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex pgf/doc/generic/pgf/version-for-tex4ht/en/Makefile @@ -717,6 +717,5 @@ pgf/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex pgf/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex pgf/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex pgf/source/generic/pgf/testsuite/external/tikzexternaltest.tex -pgf/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.pdf -pgf/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex pgf/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.tex +pgf/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex diff --git a/Master/texmf-dist/doc/generic/pgf/pgfmanual.pdf b/Master/texmf-dist/doc/generic/pgf/pgfmanual.pdf index 8c9365dc4a8..17a2d2cbcde 100644 Binary files a/Master/texmf-dist/doc/generic/pgf/pgfmanual.pdf and b/Master/texmf-dist/doc/generic/pgf/pgfmanual.pdf differ diff --git a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex index 85a879f80d6..15a39a75ea8 100644 --- a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex +++ b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex @@ -16,27 +16,6 @@ \bigskip \ifluatex\else This section of the manual can only be typeset using Lua\TeX.\expandafter\endinput\fi -\def\pgfNEXT{}% -\iffalse - % Try to compile WITH runtime support for the C backend. - \ifgdccodebasic\else - In order to typeset this section, LuaTeX\ must be able to link C code - at runtime and the graph drawing C libraries must be installed on your - system. You will find the sources in the |c| subdirectory of the - installation, where you will also find example Makefiles. - \def\pgfNEXT{\endinput}% - \fi -\else - % OK, we compile WITHOUT actual examples of the C backend. - % This simplifies runtime dependencies considerably because we do - % not need to build the C object files. - % - % Simply ensure that the ~ 3 examples which do not already have - % 'code only' receive 'code only': - \pgfkeys{/codeexample/every codeexample/.append style={code only}}% -\fi -\pgfNEXT - In the present section we have a look at how graph drawing algorithms written in the C programming language (or in C++) can be used in the graph drawing framework. @@ -310,7 +289,7 @@ location and the only contents of this file is then the above Anyway, once we have loaded the shared library we can say: -\begin{codeexample}[] +\begin{codeexample}[code only] \tikz \graph [fast simple demo layout, fast simple demo radius=1.25cm] { a -> b -> c -> d -> e -> a }; \end{codeexample} @@ -530,7 +509,7 @@ or in \tikzname We can now use it: -\begin{codeexample}[] +\begin{codeexample}[code only] \tikz \graph [fast simple demo layout c++, fast simple demo radius c++=1.25cm] { a -> b -> c -> d -> e -> a }; \end{codeexample} @@ -777,7 +756,7 @@ extern "C" int luaopen_pgf_gd_examples_c_SimpleDemoOGDF (struct lua_State *state Yet again, we need to rename the resulting shared library and then say |require| on it. We can now use it: -\begin{codeexample}[] +\begin{codeexample}[code only] \tikz \graph [fast simple demo layout ogdf, my radius ogdf=1cm] { a -> b -> c -> d -> e -> a }; \end{codeexample} diff --git a/Master/texmf-dist/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.pdf b/Master/texmf-dist/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.pdf deleted file mode 100644 index 5dfdae7d854..00000000000 Binary files a/Master/texmf-dist/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.pdf and /dev/null differ diff --git a/Master/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex b/Master/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex index 545466ab78c..1f1ba110830 100644 --- a/Master/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +++ b/Master/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex @@ -16,7 +16,7 @@ %\def\pgfversion{3.0.1-cvs} -\def\pgfversion{3.0.1} +\def\pgfversion{3.0.1a} \begingroup \catcode`\"=12 @@ -26,7 +26,7 @@ \endgroup %\def\pgftypesetversion{\oldstylenums{3}.\oldstylenums{0}.\oldstylenums{1}-cvs} -\def\pgftypesetversion{\oldstylenums{3}.\oldstylenums{0}.\oldstylenums{1}} +\def\pgftypesetversion{\oldstylenums{3}.\oldstylenums{0}.\oldstylenums{1}a} \ifx\pgfrcsloaded\undefined -- cgit v1.2.3