← Collections

GitHub

OneThree arXiv Template

A reusable LaTeX template for arXiv-style papers, technical reports, and project manuscripts, with a custom title block, author formatting, resource links, teaser image, bibliography, and appendix support.

June 30, 2026 LaTeX TemplatearXivResearch PaperTechnical ReportAcademic WritingOpen Source GitHub

OneThree arXiv Template: A Clean LaTeX Template for Research Papers

OneThree arXiv Template is a reusable LaTeX template designed for arXiv-style papers, technical reports, project manuscripts, and research drafts. It provides a polished paper layout with a custom title block, author and affiliation formatting, resource links, first-page teaser image, section placeholders, bibliography setup, and appendix support.

The template is intended for researchers, students, and project teams who want to quickly prepare a clear, modern manuscript without rebuilding the LaTeX structure from scratch. It keeps the core writing workflow lightweight: edit paper.tex, replace placeholder images, update section files, and compile.

Why This Template Exists

Research projects often need more than a plain manuscript. A modern preprint or technical report usually includes project links, code links, dataset links, a strong first-page figure, readable section structure, and an appendix that can hold extra experiments or implementation details.

OneThree arXiv Template provides these pieces in a compact, reusable form:

It is intentionally simple: replace the placeholders with your own content, keep the file structure stable, and compile.

Features

Paper Layout

FeatureDescription
Custom title blockA polished first-page title area for project-style research papers
Author formattingSupports multiple authors and affiliation indices
Affiliation blockClean institution formatting for academic manuscripts
Abstract boxDedicated abstract area defined through the custom class
Resource linksA compact block for project, GitHub, Hugging Face, or other links
Header logoUpper-left logo support through onethree.cls

Writing Structure

FeatureDescription
Section filesPaper sections are split under sections/ for easier editing
Teaser imageFirst-page figure placeholder at pngs/image.png
Placeholder figuresSection image placeholders for method, data, training, inference, and experiments
Bibliography setupUses main.bib with standard BibTeX commands
Appendix supportIncludes an appendix file for supplementary material

Build Workflow

FeatureDescription
latexmk buildCompiles with a single latexmk command
PDF outputGenerates paper.pdf
Lightweight dependenciesStandard LaTeX workflow, no web build system required
Version-control friendlyContent is separated into small .tex files

Project Structure

arXiv-Template/
├── paper.tex                 # Main entry point
├── onethree.cls              # Custom document class
├── main.bib                  # Bibliography entries
├── sections/
│   ├── introduction.tex
│   ├── modeldesign.tex
│   ├── data.tex
│   ├── modeltraining.tex
│   ├── inference.tex
│   ├── experiments.tex
│   ├── application.tex
│   ├── conclusion.tex
│   └── appendix.tex
├── assets/
│   ├── onethree_logo.jpeg
│   ├── arXiv.jpeg
│   └── ...                   # Fonts, icons, bibliography style, and assets
└── pngs/
    ├── image.png             # First-page teaser image
    ├── image1.png
    ├── image2.png
    ├── image3.png
    └── image4.png

Getting Started

Prerequisites

Build the Paper

Compile the manuscript with:

latexmk -pdf -interaction=nonstopmode -halt-on-error paper.tex

The generated PDF is:

paper.pdf

Editing the Paper

Most project-specific metadata is edited in paper.tex.

Title, Authors, and Affiliations

\title{Paper Title: Concise Subtitle Describing the Main Contribution}

\author[1]{First Author}
\author[1,2]{Second Author}
\author[2]{Third Author}

\affiliation[1]{Institution One}
\affiliation[2]{Institution Two}

Abstract

Update the abstract block in paper.tex:

\abstract{
...
}

The default resource links are placeholders:

ResourcePlaceholder
Projecthttps://choucisan.github.io
GitHubhttps://github.com/choucisan
Hugging Facehttps://huggingface.co/choucsan

Replace them inside the \checkdata[Resources] block in paper.tex.

Images and Figures

The first-page teaser image is:

pngs/image.png

The default section placeholder images are:

pngs/image1.png
pngs/image2.png
pngs/image3.png
pngs/image4.png

You can replace these files while keeping the same filenames, or update the corresponding \includegraphics paths in paper.tex and the files under sections/.

By default, images are inserted by width:

\includegraphics[width=0.98\linewidth]{pngs/image.png}

This preserves the original aspect ratio and keeps figure replacement straightforward.

Customization

The upper-left header logo is:

assets/onethree_logo.jpeg

To replace it, put your logo in assets/ and update the firststyle header in onethree.cls:

\includegraphics[width=40mm]{assets/your-logo.pdf}

Adjust the width if your logo has a different aspect ratio.

Edit Sections

The template includes the following section files:

FilePurpose
sections/introduction.texIntroduction and motivation
sections/modeldesign.texMethod or system design
sections/data.texDataset or data construction
sections/modeltraining.texTraining setup
sections/inference.texInference or deployment details
sections/experiments.texExperiments and evaluation
sections/application.texApplications and use cases
sections/conclusion.texConclusion
sections/appendix.texSupplementary material

You can edit, rename, remove, or reorder these files from paper.tex as needed.

Bibliography

Add references to main.bib and cite them with standard BibTeX commands:

\cite{sample_reference}

The template uses:

\bibliographystyle{plainnat}
\bibliography{main}

Highlights

Notes

This template intentionally keeps placeholder text and images lightweight. Replace all placeholder content before submission or public release.

LaTeX may emit a fancyhdr headheight warning because the header keeps the original logo and title-page spacing style. The warning does not prevent PDF generation.

Acknowledgments

Template reference: ByteDance Seed.

Images from Unsplash.