full thesis template commit and figures

This commit is contained in:
Jan Kowalczyk
2025-02-21 10:26:36 +01:00
parent bc267cc5f0
commit 240b8353f9
51 changed files with 9799 additions and 0 deletions

24
thesis/Makefile Normal file
View File

@@ -0,0 +1,24 @@
# Files
MAIN = Main
TEX_FILE = $(MAIN).tex
PDF_FILE = $(MAIN).pdf
BIB_FILE = bib/bibliography.bib
FIGURES = $(wildcard figures/*)
# Build script
BUILD_SCRIPT = build.sh
# Default target
all: $(PDF_FILE)
# Rule to build the PDF
$(PDF_FILE): $(TEX_FILE) $(BIB_FILE) $(FIGURES)
bash $(BUILD_SCRIPT)
# Clean target to remove generated files
clean:
rm -f $(PDF_FILE)
# Phony targets
.PHONY: all clean