arXiv Integration

Submit papers to arXiv directly from Hubify Labs — packaging, validation, and submission.

Hubify Labs streamlines the arXiv submission process by packaging your paper, validating it against arXiv requirements, and preparing the submission tarball.

Submission Workflow

Compile your paper

Ensure the paper compiles cleanly with zero undefined references:

hubify paper compile paper-1

Verify:

  • PDF file size is 15-25 MB (figures embedded)
  • Zero undefined references
  • Bibliography is complete

Validate for arXiv

Run the arXiv validation check:

hubify paper validate paper-1 --target arxiv
arXiv Validation: PASS
LaTeX source: revtex4-2 ✓
Figures: 11 PNG files, all < 10 MB ✓
Bibliography: 63 entries, all resolved ✓
File size: 22.4 MB total ✓
No absolute paths ✓
No system-specific packages ✓

Choose a category

Select the appropriate arXiv category:

CategoryDescription
astro-ph.COCosmology and Nongalactic Astrophysics
gr-qcGeneral Relativity and Quantum Cosmology
hep-thHigh Energy Physics - Theory
hep-phHigh Energy Physics - Phenomenology
astro-ph.GAAstrophysics of Galaxies
hubify paper submit paper-1 --category astro-ph.CO

Package the submission

Hubify creates a submission-ready tarball:

hubify paper package paper-1 --output submission.tar.gz

The package includes:

  • main.tex — LaTeX source
  • references.bib — Bibliography
  • fig_*.png — All figures
  • 00README.XXX — arXiv processing instructions

Upload to arXiv

Upload the tarball at arxiv.org/submit:

  1. Log in to your arXiv account
  2. Start a new submission
  3. Upload submission.tar.gz
  4. Verify the preview renders correctly
  5. Submit

Note: Direct API submission to arXiv is not yet available. The packaging step ensures your submission is correctly formatted for manual upload.

Metadata Preparation

Hubify generates arXiv-compatible metadata:

hubify paper metadata paper-1
Title: Observational Constraints on Bounce Cosmology from Multi-Survey Analysis
Authors: Houston Golden
Abstract: We present constraints on bounce cosmology models from...
Category: astro-ph.CO
Comments: 24 pages, 11 figures, 63 references

Copy this metadata into the arXiv submission form.

Common Issues

<AccordionGroup>

Figures appear as empty boxes

Figures must be in the same directory as the .tex file. The packaging step handles this, but if compiling manually, ensure all PNGs are co-located.

revtex4-2 not recognized

arXiv supports revtex4-2. If you see errors, ensure you are not using aastex631 commands like \citep or \deluxetable. Use \cite{} and standard tabular environments.

File too large

arXiv has a 50 MB limit. Compress figures:

hubify paper optimize paper-1 --max-figure-size 5MB
</AccordionGroup>

Post-Submission

After your paper is accepted on arXiv:

# Record the arXiv ID
hubify paper update paper-1 --arxiv-id "2604.12345"

# Update the lab site with the arXiv link
hubify site sync

The lab site will automatically display the arXiv link and abstract.

← Back to docs index