update: docs

This commit is contained in:
2026-03-13 14:48:32 +08:00
parent e0a40ceff0
commit b7e973e2b6
31 changed files with 2183 additions and 196 deletions

View File

@@ -0,0 +1,19 @@
# 智析反诈 项目书 - LaTeX 编译
# 使用: make 或 make pdf
MAIN = main
LATEX = xelatex
BUILD_DIR = build
.PHONY: pdf clean
pdf: $(MAIN).tex
@mkdir -p $(BUILD_DIR)
$(LATEX) -output-directory=$(BUILD_DIR) -interaction=nonstopmode $(MAIN).tex
$(LATEX) -output-directory=$(BUILD_DIR) -interaction=nonstopmode $(MAIN).tex
@cp $(BUILD_DIR)/$(MAIN).pdf . 2>/dev/null || true
@echo "PDF 已生成: $(BUILD_DIR)/$(MAIN).pdf"
clean:
rm -rf $(BUILD_DIR)
rm -f *.aux *.log *.toc *.out *.bbl *.blg *.synctex.gz