How to Convert arXiv Papers to EPUB — Read Research Papers on Kindle or Kobo (2026)
The arXiv PDF experience on e-readers is painful. Two-column layout at letter size means tiny unreadable text on a Kindle or Kobo screen. Converting arXiv papers to EPUB before sending them to your e-reader makes the difference between squinting and actually reading.
Two-column arXiv layout handled automatically. No account needed.
Convert arXiv PDF to EPUB free →Why arXiv PDFs are hard to read on e-readers
Most papers submitted to arXiv use LaTeX with two-column conference or journal templates. The resulting PDF is designed for printing on A4 or US Letter paper. When you open it on a 6-inch Kindle:
- The full page is scaled to fit the screen width — text becomes about 6pt, unreadable without zooming
- Zooming in on one column means scrolling horizontally to read each line
- Page-turn gestures jump a full PDF page rather than a screenful of text
- Font size adjustments in the Kindle app do nothing — PDFs are fixed-layout
EPUB solves all of this. Text reflows to fill whatever screen size and font size you choose, just like a regular ebook.
How to convert an arXiv paper to EPUB
- Go to arxiv.org and find your paper
- Click the PDF link — the paper downloads as a PDF file
- Go to toolkit.bot/pdf2epub
- Drag and drop the PDF or click to select it
- Wait about 30 seconds — the two-column layout is automatically detected and reflowed
- Download the EPUB and send it to your Kindle, Kobo, or phone
No account required. No email. No size limit on free conversions (up to 50 MB per file).
What the converter does with arXiv papers
Two-column detection
toolkit.bot analyses the spatial layout of text blocks on each page. When two distinct column regions are detected, text from each column is extracted in reading order (left column first, then right) rather than naively top-to-bottom across both columns, which would interleave lines from the two columns.
Running headers and page numbers
arXiv papers typically include repeated page headers and footers (journal name, volume, author names, page numbers). toolkit.bot detects and removes these before conversion so they do not appear as stray text fragments in the middle of the EPUB content.
Equations
Mathematical equations are preserved as images in the EPUB. Since arXiv PDFs render math as high-quality vector graphics or high-DPI raster images, equations remain readable on Retina and high-resolution e-ink screens.
References and citations
In-text citations and the reference list at the end of the paper are preserved. Internal cross-references (to equations, figures, and sections) become navigation links within the EPUB where the PDF contains PDF link annotations.
Sending arXiv EPUBs to your e-reader
After conversion, send the EPUB to your device:
- Kindle: email to your @kindle.com address, or use the Kindle personal documents service
- Kobo: connect via USB and copy to the
Digital Editionsfolder, or use the Kobo sync guide - iPhone/iPad: open the EPUB file in Safari — iOS will offer to open it in Apple Books
- Android: copy to the device and open with Moon+ Reader or ReadEra
Limitations to know
The converter cannot perfectly handle every arXiv paper. Known cases where results are imperfect:
- Papers with many inline equations — heavy use of inline math can disrupt line spacing in the reflowed text
- Complex figure placement — figures that span both columns may appear before or after the text that references them
- Papers with scanned pages — some older arXiv submissions include scanned pages; these go through OCR but text recognition accuracy depends on scan quality
- Algorithm and pseudocode boxes — formatted algorithm environments may not always convert cleanly to EPUB
For papers where these limitations apply, the EPUB is still more readable than the PDF on a small screen — equations and figures are preserved as images even if their placement is not perfect.
Frequently asked questions
Can I convert an arXiv paper to EPUB?
Yes. Download the PDF from arxiv.org, then upload it to toolkit.bot. The converter detects two-column academic layout automatically and reflows the text into a single readable column — the result works well on Kindle, Kobo, Apple Books, and any EPUB reader.
Why are arXiv PDFs hard to read on Kindle and Kobo?
Most arXiv papers use two-column LaTeX layout at A4 or US Letter size. When you send this to a Kindle, the text is tiny because the device fits the full page width into a 6-inch screen. There is no reflowing — you have to pinch-zoom to read each column. Converting to EPUB first solves this.
Does the converter handle equations and math in arXiv papers?
Mathematical equations in arXiv papers are usually rendered as vector graphics or embedded images. toolkit.bot preserves these as images in the EPUB, positioned inline with the surrounding text. Complex LaTeX math that was rasterised at high resolution in the PDF will appear sharp on e-reader screens.
What about figures and tables in arXiv papers?
Figures are extracted at their original resolution and placed near the surrounding text in the EPUB. Tables in arXiv PDFs are often complex multi-column structures — toolkit.bot converts them to HTML tables where possible, with image fallback for complex layouts.
Can I convert arXiv papers in bulk using the API?
Yes. toolkit.bot has an API that accepts a PDF file and returns the EPUB. You can automate conversion of multiple arXiv papers with a simple script. See the /blog/pdf-to-epub-rest-api guide for examples in Python, Node.js, and curl.