Skip to content

Commit 3eaeaf6

Browse files
cdeustclaude
andcommitted
docs(paper): port thermodynamic-memory paper to LaTeX matching arxiv/main.tex style
Mirrors the prior paper's preamble byte-for-byte (lines 1-15 of docs/arxiv/main.tex): \documentclass[11pt]{article}, same package set (amsmath/amssymb/amsfonts/graphicx/booktabs/algorithm/algorithmic/ natbib/geometry/hyperref), same utility commands (\ie, \eg, \cf), same section-separator comment convention, same plainnat citation style, booktabs tables, no vertical rules. - main.tex (60 KB) — paper body + 4 appendices (Erdős, Feynman, Popper, Shannon) ported from docs/papers/*.md - references.bib (14 KB) — 35 BibTeX entries: 11 reused-by-key from docs/arxiv/references.bib, 24 new for thermodynamics/neuro/info- theory (Friston2010, Hopfield1982, Tonegawa2015, Doya2002, Schultz1997, Kandel2001, Frey1997, Buzsaki2015, Hasselmo2005, Yerkes1908, Wang2024, Ebbinghaus1885, etc.) - Makefile (300 B) — pdflatex+bibtex+pdflatex×2 chain - .gitignore — excludes *.aux/*.bbl/*.blg/*.log/*.out/*.pdf Build: clean compile under TeX Live 2026, 0 errors, 0 undefined references, 0 undefined citations, 8 overfull \hbox warnings (all from \texttt{} file paths — same pattern as the prior paper which has 9 from the same cause). Output: 21 pages, 356 KB single-column PDF. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 51ce608 commit 3eaeaf6

4 files changed

Lines changed: 1809 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.aux
2+
*.bbl
3+
*.blg
4+
*.log
5+
*.out
6+
*.toc
7+
*.pdf
8+
*.fdb_latexmk
9+
*.fls
10+
*.synctex.gz

docs/arxiv-thermodynamic/Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
PAPER = main
2+
3+
all: $(PAPER).pdf
4+
5+
$(PAPER).pdf: $(PAPER).tex references.bib
6+
pdflatex $(PAPER)
7+
bibtex $(PAPER)
8+
pdflatex $(PAPER)
9+
pdflatex $(PAPER)
10+
11+
clean:
12+
rm -f *.aux *.bbl *.blg *.log *.out *.toc *.fdb_latexmk *.fls *.synctex.gz
13+
14+
distclean: clean
15+
rm -f $(PAPER).pdf
16+
17+
.PHONY: all clean distclean

0 commit comments

Comments
 (0)