mark example cells in dataoverview

This commit is contained in:
2025-05-16 11:08:58 +02:00
parent f1883a834b
commit 21fb68d81b
8 changed files with 101 additions and 71 deletions

View File

@@ -9,7 +9,7 @@ TXTFILE=$(TEXBASE).txt
PDFFIGURES=$(shell sed -n -e '/^[^%].*includegraphics/{s/^.*includegraphics.*{\([^}]*\)}.*/\1.pdf/;p}' $(TEXFILE))
PT=$(wildcard *.py)
PYTHONFILES=$(filter-out plotstyle.py, $(PT))
PYTHONFILES=$(filter-out plotstyle.py spectral.py, $(PT))
PYTHONPDFFILES=$(PYTHONFILES:.py=.pdf)
REVISION=e3814a1be539f9424c17b7bd7ef45a8826a9f1e2
@@ -38,7 +38,7 @@ watchplots :
# compile manuscript #################################################
bib: $(TEXBASE).bbl
$(TEXBASE).bbl: $(TEXFILE) $(BIBFILE)
$(TEXBASE).bbl: $(TEXFILE) $(BIBFILE) $(PYTHONPDFFILES) plotstyle.py
lualatex $(TEXFILE)
bibtex $(TEXBASE)
lualatex $(TEXFILE)
@@ -49,7 +49,7 @@ $(TEXBASE).bbl: $(TEXFILE) $(BIBFILE)
@sed -n -e '1,/You.ve used/p' $(TEXBASE).blg
pdf: $(PDFFILE)
$(PDFFILE) : $(TEXFILE)
$(PDFFILE) : $(TEXFILE) $(PYTHONPDFFILES) plotstyle.py
lualatex -interaction=scrollmode $< | tee /dev/stderr | fgrep -q "Rerun to get cross-references right" && lualatex -interaction=scrollmode $< || true
again :