diff options
author | Karl Berry <karl@freefriends.org> | 2015-03-26 21:52:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-03-26 21:52:52 +0000 |
commit | c49ba6283423ae1f96690a7249d1b5bf56e122ad (patch) | |
tree | f498808514729ed2c6f3b1fd7b3f0ce68f550fe0 /Master/texmf-dist/doc/luatex | |
parent | 374e5c35ca246df280f4713c692f086b409009a6 (diff) |
luamplib (26mar15)
git-svn-id: svn://tug.org/texlive/trunk@36637 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex')
-rw-r--r-- | Master/texmf-dist/doc/luatex/luamplib/NEWS | 3 | ||||
-rw-r--r-- | Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf | bin | 138872 -> 139346 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex | 9 | ||||
-rw-r--r-- | Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex | 9 |
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 Binary files differindex d6123a59e52..d11d93844da 100644 --- a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf +++ b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf 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 |