Directory macros/luatex/generic/addtoluatexpath
addtoluatexpath
The addtoluatexpath
package provides a convenient way to add input and Lua package paths in your document. You may want this package, for example, if a .cls
or .sty
file is located on a network or cloud storage drive.
Usage
- You can either pass the comma-separated paths via package options like
\RequirePackage[path1,path2]{addtoluatexpath}
in pre-amble,
or by using the macro \addtoluatexpath{path1,path2}
after the package has been loaded.
- If you wish to include first-level sub-directories as well as a path, inlcude a
/*
at the end of the path. eg.\RequirePackage[C:/Users/me/Desktop/*]{addtoluatexpath}
adds your Desktop and all folders in the desktop to path. - If you wish to include all nested sub-directories of all levels, include a
/**
at the end of the path. - If you want to add to Lua path (
package.path
) only, includenotex=true
in the argument. - If you want to add to tex input path only, include
nolua=true
in the argument.
\RequirePackage[nolua=true, C:/Users/me/Desktop/*, /**]{addtoluatexpath}
- The lua functions below are globally defined:
atlp_main(paths_str)
is the main function that runsatlp_paths = {}
is a table containing all paths added by this packageatlp_find_file(file_str)
is a function that returns the full path of a file, it searches through all paths that were input to this package and returns the first valid. If no paths are found, an error is issed
Note
This package appends to the package.path
Lua variable and the \input@path
command (it first uses \providecommand
to intialize it). Lua files in the added paths can then added via require'fileinpath1'
; however loadfile
and dofile
still require the full path. graphicx
internally uses \input@path
as a default list of the paths; therefore, paths specified by this package will also include graphics if the graphicx
package is loaded after paths are set. However, if \graphicspath{}
is used after paths are added by this package, graphics search paths will not use \input@path
, omitting the paths you added with this package.
Dependencies
luacode
, luakeys
, penlight
(only if using *
in paths)
Repo & Contact
License
Copyright (C) 2023-2024 Kale Ewasiuk
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Download the contents of this package in one zip archive (3.1k).
addtoluatexpath – Add paths to Lua packages and input TeX files
This package provides a convenient way to add input and Lua package paths in your document. You may want this package, for example, if a .cls or .sty file is located on a network or cloud storage drive.
Package | addtoluatexpath |
Repository | https://github.com/kalekje/addtoluatexpath |
Version | 2024-03-14 |
Licenses | MIT License |
Copyright | 2023–2024 Kale Ewasiuk |
Maintainer | Kale Ewasiuk |
Contained in | TeX Live as addtoluatexpath MiKTeX as addtoluatexpath |
Topics | LuaTeX Generic Macros |