Theses, Books, Title pagesebook Template not producing ToC

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
DavidDaily
Posts: 7
Joined: Thu May 09, 2019 5:56 pm

ebook Template not producing ToC

Post by DavidDaily »

Hello,

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/bash

while inotifywait -e close_write *.tex; do
	pdflatex -file-line-error -interaction nonstopmode Main.tex
	mv Main.pdf Output.pdf
	mv Main.log .main.log
	rm Main.out
	rm Main.aux
	rm Main.toc
done
Fixed version thanks to rais:

Code: Select all

#!/bin/bash

while inotifywait -e close_write *.tex; do
	pdflatex -file-line-error -interaction nonstopmode Main.tex
	pdflatex -file-line-error -interaction nonstopmode Main.tex
	mv Main.pdf Output.pdf
	mv Main.log .main.log
	rm Main.out
	rm Main.aux
	rm Main.toc
done
Last edited by DavidDaily on Tue May 14, 2019 2:35 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
rais
Posts: 419
Joined: Sun Nov 16, 2014 8:51 pm

ebook Template not producing ToC

Post by rais »

Hi,
you need to run pdflatex at least twice, before even thinking about deleting the toc file.

KR
Rainer
DavidDaily
Posts: 7
Joined: Thu May 09, 2019 5:56 pm

ebook Template not producing ToC

Post by DavidDaily »

rais wrote:run pdflatex at least twice
Fascinating. Just duplicated the pdflatex line in my bash script and it all works out perfectly now (same links as first post)
Post Reply