Removed version number now we use git

for i in $(ls *); do mv $i `echo $i | sed 's/_v23//'/`; done;
sed -i 's/_v23//'g *.tex compile.sh
This commit is contained in:
Andre Heinecke 2025-06-01 14:01:54 +02:00
parent 791dfc8d67
commit 62fae990d9
No known key found for this signature in database
GPG Key ID: 2978E9D40CBABA5C
9 changed files with 33 additions and 33 deletions

View File

@ -2,8 +2,8 @@
# Quick compile script for the paper # Quick compile script for the paper
echo "Compiling Atoms are Balls paper..." echo "Compiling Atoms are Balls paper..."
pdflatex main_document_v23.tex pdflatex main_document.tex
bibtex main_document_v23 bibtex main_document
pdflatex main_document_v23.tex pdflatex main_document.tex
pdflatex main_document_v23.tex pdflatex main_document.tex
echo "Done! Output: main_document_v23.pdf" echo "Done! Output: main_document.pdf"

28
current/main_document.tex Normal file
View File

@ -0,0 +1,28 @@
% main_document.tex
% "Atoms are Balls" - Version 23
% Git repository: https://git.esus.name/esus/spin_paper
%
% This is the main file that combines all sections
% Compile this file to generate the complete paper
%
% File structure:
% - main_header.tex: Document setup, title, abstract, introduction
% - theory_atoms.tex: Multi-atom analysis proving atoms are 3D balls
% - philosophical_considerations.tex: Quantum gravity implications
% - examples_explorations.tex: Applications to other scales
% - observations_discussion.tex: Tests, predictions, and conclusions
% Include the header with title, abstract, and introduction
\input{main_header.tex}
% Include the core theory: atoms are balls across the periodic table
\input{theory_atoms.tex}
% Include philosophical implications and quantum gravity connection
\input{philosophical_considerations.tex}
% Include exploratory applications at other scales
\input{examples_explorations.tex}
% Include observational tests, predictions, and final discussion
\input{observations_discussion.tex}

View File

@ -1,28 +0,0 @@
% main_document_v23.tex
% "Atoms are Balls" - Version 23
% Git repository: https://git.esus.name/esus/spin_paper
%
% This is the main file that combines all sections
% Compile this file to generate the complete paper
%
% File structure:
% - main_header_v23.tex: Document setup, title, abstract, introduction
% - theory_atoms_v23.tex: Multi-atom analysis proving atoms are 3D balls
% - philosophical_considerations_v23.tex: Quantum gravity implications
% - examples_explorations_v23.tex: Applications to other scales
% - observations_discussion_v23.tex: Tests, predictions, and conclusions
% Include the header with title, abstract, and introduction
\input{main_header_v23.tex}
% Include the core theory: atoms are balls across the periodic table
\input{theory_atoms_v23.tex}
% Include philosophical implications and quantum gravity connection
\input{philosophical_considerations_v23.tex}
% Include exploratory applications at other scales
\input{examples_explorations_v23.tex}
% Include observational tests, predictions, and final discussion
\input{observations_discussion_v23.tex}