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:
parent
791dfc8d67
commit
62fae990d9
|
@ -2,8 +2,8 @@
|
|||
# Quick compile script for the paper
|
||||
|
||||
echo "Compiling Atoms are Balls paper..."
|
||||
pdflatex main_document_v23.tex
|
||||
bibtex main_document_v23
|
||||
pdflatex main_document_v23.tex
|
||||
pdflatex main_document_v23.tex
|
||||
echo "Done! Output: main_document_v23.pdf"
|
||||
pdflatex main_document.tex
|
||||
bibtex main_document
|
||||
pdflatex main_document.tex
|
||||
pdflatex main_document.tex
|
||||
echo "Done! Output: main_document.pdf"
|
||||
|
|
|
@ -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}
|
|
@ -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}
|
Loading…
Reference in New Issue