1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
History of the luamplib package
2015/01/05 2.9.0
* after declaring `\mplibcodeinherit{enable}', each mplib code chunks
will inherit variables/constants/macros defined by previous chunks.
On the contrary, the default value `\mplibcodeinherit{disable}' will
treat each code chunks as an independent instance, never being affected
by other code chunks.
2014/07/04 2.8.1
* support color package on plain tex.
* fix a failure at `btex \% etex'.
2014/06/17 2.8.0
* support color/xcolor/spotcolor packages.
On LaTeX, color names or expressions of color/xcolor packages
can be used inside mplibcode environment with the command
\mpcolor{<color expression>}.
2014/04/25 2.7.0
* support DVIPDFMx
* default directory for cache is now '$TEXMFVAR/luamplib_cache'
* internal changes following LuaTeX engine v0.79 and luatexbase
package v0.7
* [fix] avoid luatex crash under math_mode 'decimal'
2014/03/26 2.6.1
* now luamplib does not disregard 'show' command, even if
'luamplib.showlog' is false. Incidentally, it does not raise
error, but just prints a warning, even if output contains
no figure.
* fix a bug wrt color, which might come to the fore under
math mode 'double' or 'decimal'.
2014/03/08 2.6.0
* new macro \mplibtextextlabel{enable} enables string labels typeset
with textext() instead of infont operator. Every string label
thereafter will be typeset with current TeX font.
* fixed a bug wrt btex ... etex parsing (issue #39)
* [doc] added a mention about \MPllx, \MPlly, \MPurx, and \MPury.
2014/03/01 2.5.3
* using \mplibcachedir{<directory path>}, users can change the
directory for storing cache files. By default, it is the directory
where pdf output file is saved.
* at the end of package loading, luamplib searches 'luamplib.cfg',
and, when found, reads the file in automatically.
2014/02/24 2.5.2
* new macros \mplibmakenocache{...} and \mplibcancelnocache{...} to
register/unregister those .mp files that do not need caches.
These macros affect the compilation speed only.
* added a hack to support graph.mp (in fact, format.mp)
* [fix] luamplib now respects percent sign if it is enclosed by quotes.
2014/02/19 2.5
* btex ... etex input from external *.mp files will also be processed
by luamplib. However, verbatimtex ... etex will be entirely ignored
in this case.
2014/02/02 2.4
* implemented "numbersystem" option. Default value "scaled" can be
changed by declaring \mplibnumbersystem{double}. For details, see
http://github.com/lualatex/luamplib/issues/21
2014/01/20 2.3
* \everymplib, \everyendmplib: macros that redefine token lists
\everymplibtoks and \everyendmplibtoks. These will be
automatically inserted at the beginning and ending (respectively)
of each and every mplib code.
* naked TeX codes, includig \mpdim{...}, are allowed inside
mplibcode environment. Refer the manual of gmp package for
details.
2013/12/30 2.2
* start to support transparency/shading under metafun format.
* verbatimtex ... etex just before beginfig() is not ignored.
Using this macro, each mplib box can be moved horizontally and/or
vertically.
2013/12/23 2.1.1
* fix a bug wrt "withoutcolor" option
* fix a bug wrt "char <number> infont <font>" picture
* bypass some ConTeXt commands which raise errors under metafun format
* ignore "fontmapfile <filename>" which isn't needed in mplib
2013/12/19 2.1
* Do not ignore "withcolor" option for textext and normal text object
* verbatimtex ... etex is now just ignored, not raising error
2013/12/11 2.03
* implemented textext() macro which is identical to TEX() from TEX.mp.
TEX() is a synonym of textext().
* fix a bug regarding tex-text box inside for...endfor loop,
reported at http://www.ktug.org/xe/index.php?document_srl=178050
2013/09/24 2.01
* fix bug reported by Stephan Hennig: wrong baseline of tex-text box
2013/05/07 2.0
* Update with current ConTeXt code
* Adding the possibility of btex...etex commands (Kim)
2011/12/09 1.09
* Fix bug reported by Paul Vojta: spurious spaces.
2011/06/23 1.08
* Fix bug reported by Rolf Dieterich: <, >, TAB anywhere in a luacode
environment caused errors. The character ` was affected too.
2010/12/28 1.07
* fix two bugs reported by Arno Trautmann that made the package crash with
luatex 0.65 (mp 1.5+).
* remove support for using .mem files (to fix the second bug)
2010/10/17 v1.06
* bugfix from Hans (bad function name)
2010/10/10 v1.05
* adapt to luatexbase v0.3
2010/08/02 v1.04
* fixing a bug in LaTeX's detection (made Tikz fail)
* setting luamplib-luatex as the default name for the format, it's the case
in TeXLive 2010
* adding two test files in the git repository
2010/05/10 v1.03
* adaptation to the new luatexbase package
|