diff options
author | Karl Berry <karl@freefriends.org> | 2017-06-06 21:51:05 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-06-06 21:51:05 +0000 |
commit | fd4e52f0e35adc6fe34b5223ce1b876ac6380729 (patch) | |
tree | f18acdac7bf6500a44a57d64a9ad804b4e788e10 /Master/texmf-dist/doc/luatex/luapackageloader/README.md | |
parent | d370d7fc94d6ccb3c501fb9b5947edb14e60671d (diff) |
luapackageloader (27may17)
git-svn-id: svn://tug.org/texlive/trunk@44500 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex/luapackageloader/README.md')
-rw-r--r-- | Master/texmf-dist/doc/luatex/luapackageloader/README.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/luatex/luapackageloader/README.md b/Master/texmf-dist/doc/luatex/luapackageloader/README.md new file mode 100644 index 00000000000..0326a4110dd --- /dev/null +++ b/Master/texmf-dist/doc/luatex/luapackageloader/README.md @@ -0,0 +1,22 @@ +# luapackageloader +CTAN package to allow LuaTeX to load packages from the default `package.path` and `package.cpath` locations. This could be useful +to load external Lua modules, including modules installed via [LuaRocks](https://luarocks.org). + +## Usage +See the [PDF documentation](luapackageloader.pdf) for details. + +Here is a quick TeX example: + +```tex +\input luapackageloader + +% Now we proceed to load a LuaRocks package +\directlua{ + local spt = require("serpent") +} +``` + +## License +Distributable under the LaTeX Project Public License, version 1.3c or higher (your choice). The latest version of this license is at: http://www.latex-project.org/lppl.txt + +This work is "maintained" (as per LPPL maintenance status) by Deepak Jois. |