From fc2a99a62f2750cd0845de98bf9c30941c610613 Mon Sep 17 00:00:00 2001 From: Max Value Date: Tue, 25 Mar 2025 11:12:52 +0000 Subject: [PATCH] Added thumbnails --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 419869d..b00e906 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,10 @@ $(documents) : ./media/goodnight.pdf ./media/ootcblack.pdf ./media/ootccolor.pdf pdflatex -output-directory="./build" -interaction="nonstopmode" -jobname='$@' -output-format='pdf' "\documentclass{ootc-pdf}\input{docs/$@}" pdflatex -output-directory="./build" -interaction="nonstopmode" -jobname='$@' -output-format='pdf' "\documentclass{ootc-pdf}\input{docs/$@}" + # make the titlepage for the document + pdfjam ./build/$@.pdf 1 -o ./build/cover-$@.pdf + magick -density 60x60 ./build/cover-$@.pdf -quality 90 -background white -flatten -alpha off ./build/$@.png + # compile as epub using the ootc-epub format latexmlc --dest=./build/$@.epub --base=./build --includestyles "literal:\documentclass{ootc-html}\input{docs/$@}" @@ -29,7 +33,7 @@ $(documents) : ./media/goodnight.pdf ./media/ootcblack.pdf ./media/ootccolor.pdf .PHONY : tidy tidy : -rm latexml.log - -rm ./build/*.log ./build/*.aux + -rm ./build/*.log ./build/*.aux ./build/cover-* .PHONY : clean clean : -- 2.39.2