diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-10-07 18:28:05 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-10-07 18:28:05 +0000 |
commit | 4f17176bf91e4bfc57b5e393a4deda18580bad63 (patch) | |
tree | 1cdfce2c74bb197d9705fcf635bd4595cd18a164 /Master/texmf-dist/source | |
parent | 89f05f1b7ae3cad4245b1d75f9ed441bc1634a6e (diff) |
luamplib update
git-svn-id: svn://tug.org/texlive/trunk@15676 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/luatex/luamplib/luamplib.dtx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx index 9cedd1f72cd..9bdf455b428 100644 --- a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx +++ b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx @@ -37,7 +37,7 @@ \input docstrip.tex \Msg{************************************************************************} \Msg{* Installation} -\Msg{* Package: luamplib 2009/10/01 v1.02 metapost package for LuaTeX.} +\Msg{* Package: luamplib 2009/10/06 v1.02 metapost package for LuaTeX.} \Msg{************************************************************************} \keepsilent @@ -106,7 +106,7 @@ and the derived files %<*driver> \NeedsTeXFormat{LaTeX2e} \ProvidesFile{luamplib.drv}% - [2009/10/01 v1.02 mplib package for LuaTeX.]% + [2009/10/06 v1.02 mplib package for LuaTeX.]% \documentclass{ltxdoc} \begin{document} \DocInput{luamplib.dtx}% @@ -133,7 +133,7 @@ and the derived files % Right brace \} Tilde \~} % % \title{The \textsf{luamplib} package} -% \date{2009/10/01 v1.02} +% \date{2009/10/06 v1.02} % \author{Hans Hagen, Taco Hoekwater and Elie Roux \\ % \texttt{elie.roux@telecom-bretagne.eu}} % @@ -215,7 +215,7 @@ luamplib = { } luamplib.module = { name = "luamplib", version = 1.02, - date = "2009/10/01", + date = "2009/10/06", description = "Lua package to typeset Metapost with LuaTeX's MPLib.", author = "Hans Hagen, Taco Hoekwater & Elie Roux", copyright = "ConTeXt Development Team & Elie Roux", @@ -240,7 +240,7 @@ local format, concat, abs = string.format, table.concat, math.abs % \begin{macrocode} luamplib.currentformat = "plain" -luamplib.currentmem = "mpost" +luamplib.currentmem = "mplib-luatex" local currentformat = luamplib.currentformat local currentmem = luamplib.currentmem @@ -731,7 +731,7 @@ end \else \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{luamplib} - [2009/10/01 v1.02 mplib package for LuaTeX.] + [2009/10/06 v1.02 mplib package for LuaTeX.] \RequirePackage{luatextra} \RequirePackage{fancyvrb} \fi @@ -748,7 +748,7 @@ end % % There are (basically) two formats for metapost: \emph{plain} and % \emph{mpfun}. The corresponding \texttt{.mem} files are (at least will -% be) \texttt{luatex-plain.mem} and \texttt{luatex-mpfun.mem} in \TeX Live. +% be) \texttt{mplib-luatex.mem} in \TeX Live (starting from 2009). % With these functions you can set the format and the mem files that will % be used by this package. Warning: the package never generates the mem % files, you have to do it by hand, with \texttt{create-mem.lua}. @@ -934,7 +934,7 @@ end % \subsection{\texttt{luamplib-createmem.lua}} % % Finally a small standalone file to call with \texttt{texlua} that -% generates \texttt{luatex-plain.mem} in the current directory. To generate +% generates \texttt{mplib-luatex.mem} in the current directory. To generate % other formats in other names, simply change the last line. After the % \texttt{mem} generation, you'll have to install it in a directory % searchable by \TeX . @@ -975,7 +975,7 @@ makeformat = function (name, mem_name) end end -makeformat("plain", "luatex-plain.mem") +makeformat("plain", "mplib-luatex.mem") % \end{macrocode} % \end{macro} |