LaTeX paper describing the archetypal role system, PDCA quality cycles, shadow detection framework, attention filters, convergence detection, and effectiveness scoring. References Lu et al. 2026 (Assistant Axis) for persona stability grounding.
19 lines
350 B
Makefile
19 lines
350 B
Makefile
# Build the ArcheFlow paper
|
|
# Usage: make (build PDF)
|
|
# make clean (remove build artifacts)
|
|
|
|
MAIN = archeflow
|
|
|
|
.PHONY: all clean
|
|
|
|
all: $(MAIN).pdf
|
|
|
|
$(MAIN).pdf: $(MAIN).tex references.bib
|
|
pdflatex $(MAIN)
|
|
bibtex $(MAIN)
|
|
pdflatex $(MAIN)
|
|
pdflatex $(MAIN)
|
|
|
|
clean:
|
|
rm -f $(MAIN).{aux,bbl,blg,log,out,pdf,toc,lof,lot,nav,snm,vrb}
|