summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/luatex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-03-23 20:20:31 +0000
committerKarl Berry <karl@freefriends.org>2024-03-23 20:20:31 +0000
commit9072566a61f4674275eb6eac58bab85d3f7a2e78 (patch)
treee2cf68cb40621426522241a2351f5549399cbf41 /Master/texmf-dist/doc/luatex
parent520e45898a57d3013b0040d2c851d24fb1e6ec3d (diff)
luamplib (23mar24)
git-svn-id: svn://tug.org/texlive/trunk@70737 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex')
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS7
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin157116 -> 158401 bytes
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex4
3 files changed, 11 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index 5b7e20f5050..51265851777 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/NEWS
+++ b/Master/texmf-dist/doc/luatex/luamplib/NEWS
@@ -1,5 +1,12 @@
History of the luamplib package
+2024/03/23 2.27.0
+ * when `mplibcodeinherit' is enabled, `mplibglobaltextext' is implicitly
+ enabled as well.
+ * when instance name is used to mplibcode environments, btex ... etex
+ boxes are also shared among the environments of the same intance name.
+ * transparency functionality does not conflict with transparent package.
+
2024/03/10 2.26.4
* not just color names but also color expressions of l3color module
are now supported even if xcolor package is loaded
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index 1aefabf1edb..474f90c7ce5 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
+++ b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
index 246a5bda297..62c416fecec 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
+++ b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
@@ -175,9 +175,12 @@ diameter:\Dia bp.%
\everyendmplib[instanceOne]{endfig;}
\begin{mplibcode}[instanceOne]
+ picture TeX;
+ TeX := btex \TeX etex;
a := 1cm;
draw fullcircle scaled a;
draw btex a circle with $d=a$ etex shifted (a,0);
+draw TeX;
\end{mplibcode}%
Current instance name is: \currentmpinstancename \vskip 2\baselineskip
@@ -218,6 +221,7 @@ Current instance name is: \currentmpinstancename (should be empty) \vskip 2\base
\begin{mplibcode}[instanceOne]
draw unitsquare scaled a;
draw btex a square with side $=a$, inherited from the same instance etex shifted (3/2a, 1/2a);
+ draw TeX;
\end{mplibcode}%
Current instance name is: \currentmpinstancename \vskip 2\baselineskip