latex-conference-template-organizer

Solid

Organize messy conference LaTeX template .zip files into clean Overleaf-ready structure. Use when the user asks to "organize LaTeX template", "clean up .zip template", or "prepare Overleaf submission template".

Data & Documents 4,293 stars 375 forks Updated 6 days ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# LaTeX Conference Template Organizer ## Overview Transform messy conference LaTeX template .zip files into clean, Overleaf-ready submission templates. Official conference templates often contain excessive example content, instructional comments, and disorganized file structures. This skill converts them into templates ready for writing. ## Working Mode **Analyze-then-confirm mode**: First analyze issues and present them to the user, then execute cleanup after confirmation. ## Complete Workflow ``` Receive .zip file ↓ 1. Extract and analyze file structure ↓ 2. Identify main file and dependencies ↓ 3. Diagnose issues (present to user) ↓ 4. Ask for conference info (link/name) ↓ 5. Wait for user confirmation of cleanup plan ↓ 6. Execute cleanup, create output directory ↓ 7. Generate README (with official website info) ↓ 8. Output complete ``` ## Step 1: Extract and Analyze ### Extract Files Extract .zip to a temporary directory: ```bash unzip -q template.zip -d /tmp/latex-template-temp cd /tmp/latex-template-temp find . -type f -name "*.tex" -o -name "*.sty" -o -name "*.cls" -o -name "*.bib" ``` ### Identify File Types | File Type | Purpose | |-----------|---------| | `.tex` | LaTeX source files | | `.sty` / `.cls` | Style files | | `.bib` | Bibliography database | | `.pdf` / `.png` / `.jpg` | Image files | ### Identify Main File **Common main file names:** - `main.tex` - `paper.tex` - `document.tex` - `sample-sigconf.tex` - `templat...

Details

Author
Galaxy-Dawn
Repository
Galaxy-Dawn/claude-scholar
Created
4 months ago
Last Updated
6 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category