├── README.md
├── main.tex
├── songidx.lua
│ ├── songs
| | ├── musica-01.tex
| | ├── musica-02.tex
│ │ └── musica-03.tex
└── makefile
Arquivo makefile para facilitar a compilação:
all:
pdflatex main.tex
texlua songidx.lua index.sxd index.sbx
pdflatex main.tex
rm -f *.aux *.log *.toc *.sxd *.sbx *.ilg *.out *.sxc *.gz
rm -f songs/*.aux
pdfjam --booklet true --landscape --suffix booklet --a4paper main.pdf
pdf:
pdflatex main.tex
texlua songidx.lua index.sxd index.sbx
pdflatex main.tex
clear:
rm -f *.aux *.log *.toc *.sxd *.sbx *.ilg *.out *.sxc *.gz
rm -f songs/*.aux
booklet:
pdfjam --booklet true --landscape --suffix booklet --a4paper main.pdf