[go: up one dir, main page]

Menu

Tree [608aee] master /
 History

HTTPS access


File Date Author Commit
 packages 2025-01-21 Fernando Pujaico Rivera Fernando Pujaico Rivera [de02bc] ordenando
 .gitignore 2025-05-23 Fernando Pujaico Rivera Fernando Pujaico Rivera [9a3a6a] mejorando
 README.md 2025-05-23 Fernando Pujaico Rivera Fernando Pujaico Rivera [608aee] ordenando
 main.pdf 2025-05-23 Fernando Pujaico Rivera Fernando Pujaico Rivera [9a3a6a] mejorando
 main.tex 2025-05-23 Fernando Pujaico Rivera Fernando Pujaico Rivera [9a3a6a] mejorando
 poesia.txt 2025-01-16 Fernando Pujaico Rivera Fernando Pujaico Rivera [62e4ec] Initial commit
 screenshot.png 2025-05-23 Fernando Pujaico Rivera Fernando Pujaico Rivera [608aee] ordenando

Read Me

luapoemformats package

Creates macros to be used in the lua latex compilers

Screenshot

Install package

You will need to install two files: luapoemformats.sty and luapoemformats.lua.

You have two options:

Option 1: Local installation in the same directory as your .tex file

Place both files (luapoemformats.sty and luapoemformats.lua) in the same directory as your main .tex file.

Option 2: Install into the local TEXMF tree

  1. Find your local TEXMF path by running:

    bash kpsewhich -var-value=TEXMFHOME

  2. Suppose the command returns:

    bash /home/username/texmf

  3. Then place the files in the following locations:

    bash /home/username/texmf/tex/latex/luapoemformats/luapoemformats.sty /home/username/texmf/scripts/luapoemformats/luapoemformats.lua

  4. 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.

Load the package

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.