This repository has been archived on 2022-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/scripts/.local/bin/makedoc

16 lines
227 B
Bash
Executable File

#!/bin/bash
pandoc --biblatex -t latex -s -i $1 -o $1.lytex
lilypond-book $1.lytex -o textmp
cd textmp
xelatex $1.tex
if [ -f "$1.bcf" ]
then
biber $1.bcf
xelatex $1.tex
fi
cp $1.pdf ..
cd ..
rm -rf textmp
rm $1.lytex