Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
pdf
pdf
label
class label
4.16k classes
418-dot-204-term-paper-template
52-dot-2-formal-write-up
72015mcm
1721-127-concepts-of-mathematics-cmu
1824-dot-241-pset-template
20307-last-first
226-dot-046-problem-set-template
64a-latex-template-for-writing-beautiful-point-by-point-responses
103a-soft-template-for-homework-solutions
142actividad-4-gestores-de-referencias
144addition-worksheet-template
145ads-programming-report-template
151aga-workshop-open-problem-template
176altegrad-lab-answer-sheet-template
179ama-format-assignment-template
181amath582-homework-template
248article-hw-template
258assessment-report
260assignment-1-2016-ordinara-differentialekvationer-mmg511-slash-mve162
261assignment-homework-solutions-template
263assignment-template-for-software-engineering
264assignment-template-for-yale-cpsc-459-559
265assignment-template-uom
262assignment-template
259assignment
266assignments-template
267assignmeownt
280atividade-unifesp-template
320baijayantas-tutorial-aka-tutorial
329barebones-pset-template
332basic-homework-template
335bates-college-physics-homework-template
417bgu-assignment-template
517c-plus-plus-template
518c240-models-of-computation-assessed-coursework-2-template
538cardiff-met-cst-assignment
539carleton-college-comps-template-a
549cauchy-schwarz-inequality
590chem-446-337-hw-template
596chr-homework-template
607cis-160-homework
608cis-320-homework-template
616class-journal-template
617class-template-for-315-writeups
621classroom-lesson
645collingwood-template
646colloquium-template
653compact-homework-format
657compte-rendu-tp-ecole-navale
663computer-science-assignment-template
664computer-science-homework-template
682cos340-f2014-template
683cosc-4765-hw2-template
686course-project-vclab-ontario-tech-university
687course-report
688coursework-template-co343
689coursework-template-for-cardiff-university-computing-for-mathematics-individual-coursework
690coursework-template-for-languages-and-computation
699cpsc121-2019w1-lab-1
702cranfield-assignment-template
705cs-109-problem-set-template
706cs-111-homework-1-review-quiz
707cs-assignment-template-muic
709cs-undergraduate-report-template
710cs170-homework-template
711cs221-fall-2017-homework
712cs310-assignment-template
713cs330-assignment-template
714cs501r-assignment-template
715cs6780-assignment-template
716csci-3104-problem-set-template
717cse-237c-project-template
718cse-3500-algorithms-and-complexity-homework-template
End of preview. Expand in Data Studio

ParsecDoc LaTeX Templates

A collection of 4,186 LaTeX document templates, organized by document type. Each template folder contains:

  • a compiled PDF (<template-name>.pdf) — the rendered document
  • a source ZIP (<template-name>.zip) — the LaTeX source files used to produce it

This pairing of rendered output with its exact source makes the dataset useful for document parsing, PDF-to-LaTeX conversion, document layout analysis, and OCR training/evaluation.

Categories

Category Templates
Theses 1,735
Presentations 738
Journal articles 588
Assignments 349
CVs and resumes 309
Posters 192
Formal letters 150
Books 93
Newsletters 14
Bibliographies 11
Calendars 7
Total 4,186

Structure

<Category>/
  <template-name>/
    <template-name>.pdf   # compiled document
    <template-name>.zip   # LaTeX source

The dataset viewer above shows the PDFs (the default config loads **/*.pdf as a pdffolder dataset). The ZIP sources are not part of the viewer config but can be downloaded directly (see below).

Usage

Load the PDFs with 🤗 Datasets

# requires: pip install "datasets[pdf]"  (installs pdfplumber)
from datasets import load_dataset

ds = load_dataset("bhanubathini2002/dataset_parsecdoc.ai", split="train")
print(ds[0]["pdf"])  # pdfplumber PDF object

Download the LaTeX sources (ZIPs)

from huggingface_hub import snapshot_download

path = snapshot_download(
    "bhanubathini2002/dataset_parsecdoc.ai",
    repo_type="dataset",
    allow_patterns="*.zip",
)

Download a single template

from huggingface_hub import hf_hub_download

pdf = hf_hub_download(
    "bhanubathini2002/dataset_parsecdoc.ai",
    "Assignments/assignment-template/assignment-template.pdf",
    repo_type="dataset",
)

Licensing

The templates were collected from publicly available template galleries. Each template retains the license chosen by its original author (commonly LPPL, MIT, CC-BY, or similar); check the source ZIP of an individual template for its specific license before redistribution.

Downloads last month
48