summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/luatex/luamplib
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/luatex/luamplib')
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS3
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin138872 -> 139346 bytes
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex9
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex9
4 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index 91afec63d95..42ae5d1da71 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/NEWS
+++ b/Master/texmf-dist/doc/luatex/luamplib/NEWS
@@ -1,5 +1,8 @@
History of the luamplib package
+2015/03/26 2.10.1
+ * fix bug #55 regarding hash token
+
2015/03/20 2.10.0
* TeX code in `VerbatimTeX()' between `beginfig();' and `endfig;'
will be inserted after flushing out the mplib figure.
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index d6123a59e52..d11d93844da 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 eeb6bade559..016ac80c846 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
+++ b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
@@ -137,4 +137,13 @@ endfig;
endfig;
\end{mplibcode}%
diameter:\Dia bp.%
+\begin{mplibcode}
+ vardef rotatedlabel@#(expr str, loc, angl) =
+ draw thelabel@#(str, loc) rotatedaround(loc, angl)
+ enddef;
+
+ beginfig(1);
+ rotatedlabel.top(textext("Rotated!"), origin, 45);
+ endfig;
+\end{mplibcode}%
\end{document}
diff --git a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
index f6c7db74e83..1a76f1e857f 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
+++ b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
@@ -135,4 +135,13 @@ endfig;
endfig;
\endmplibcode
diameter:\Dia bp.%
+\mplibcode
+ vardef rotatedlabel@#(expr str, loc, angl) =
+ draw thelabel@#(str, loc) rotatedaround(loc, angl)
+ enddef;
+
+ beginfig(1);
+ rotatedlabel.top(textext("Rotated!"), origin, 45);
+ endfig;
+\endmplibcode
\bye