diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-15 20:46:48 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-15 20:46:48 +0200 |
commit | f6cb1e9d141d881ae6205027626d6643776e833c (patch) | |
tree | c9dc4872c7306b1f038bb4f62bc5c114e8378d86 /latexmkrc | |
parent | c9d4ba22a8b6d0d5fb1062701eda8b1af554d422 (diff) |
WIP requirements
Diffstat (limited to 'latexmkrc')
-rw-r--r-- | latexmkrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -26,11 +26,12 @@ sub plantuml { add_cus_dep('txt', 'tex', 0, 'time2tex'); sub time2tex { - return system "python3 time2tex.py '$_[0].txt'"; + return system "python3 scripts/time2tex.py '$_[0].txt'"; } add_cus_dep('toml', 'tex', 0, 'reqs2tex'); +add_cus_dep('toml', 'aux', 0, 'reqs2tex'); sub reqs2tex { - return system "python3 reqs2tex.py '$_[0].toml'"; + return system "python3 scripts/reqs2tex.py '$_[0].toml'"; } |