I got the ebook template (https://www.latextemplates.com/template/ebook) and can't seem to get it to work on my system.
It works fine in Overleaf: https://www.overleaf.com/read/gpbzxbcxzcmx
But on my machine it doesn't work: https://daviddaily.dev/LaTeX/Anders/Output.pdf
all of the code for it is also there: https://daviddaily.dev/LaTeX/Anders
the shell script I'm using to generate Output.pdf is
Code: Select all
#!/bin/bashwhile inotifywait -e close_write *.tex; dopdflatex -file-line-error -interaction nonstopmode Main.texmv Main.pdf Output.pdfmv Main.log .main.logrm Main.outrm Main.auxrm Main.tocdone
Code: Select all
#!/bin/bashwhile inotifywait -e close_write *.tex; dopdflatex -file-line-error -interaction nonstopmode Main.texpdflatex -file-line-error -interaction nonstopmode Main.texmv Main.pdf Output.pdfmv Main.log .main.logrm Main.outrm Main.auxrm Main.tocdone