| File | Date | Author | Commit |
|---|---|---|---|
| packages | 2025-01-21 |
|
[de02bc] ordenando |
| .gitignore | 2025-05-23 |
|
[9a3a6a] mejorando |
| README.md | 2025-05-23 |
|
[608aee] ordenando |
| main.pdf | 2025-05-23 |
|
[9a3a6a] mejorando |
| main.tex | 2025-05-23 |
|
[9a3a6a] mejorando |
| poesia.txt | 2025-01-16 |
|
[62e4ec] Initial commit |
| screenshot.png | 2025-05-23 |
|
[608aee] ordenando |
Creates macros to be used in the lua latex compilers
You will need to install two files: luapoemformats.sty and luapoemformats.lua.
You have two options:
.tex filePlace both files (luapoemformats.sty and luapoemformats.lua) in the same directory as your main .tex file.
Find your local TEXMF path by running:
bash
kpsewhich -var-value=TEXMFHOME
Suppose the command returns:
bash
/home/username/texmf
Then place the files in the following locations:
bash
/home/username/texmf/tex/latex/luapoemformats/luapoemformats.sty
/home/username/texmf/scripts/luapoemformats/luapoemformats.lua
After placing the files, run:
bash
mktexlsr
to update the TeX file database.
Note: If the .lua file is not found during compilation, you may manually specify its path in the .sty file using \directlua{dofile("...")} or \luadirect.
In the preamble of your .tex document, add:
\usepackage{luapoemformats}
Make sure to compile your document with LuaLaTeX, since the package uses Lua-specific features.