Standardize LaTeX academic paper projects with modular structure and automated asset management.
project-root/
├── assets/ # Images and auto-generated .tex files
│ ├── figure1.png
│ ├── figure1.tex # Auto-generated
│ └── table1.tex
├── src/ # Modular sections
│ ├── introduction.tex
│ ├── methods.tex
│ └── references.bib
└── main.tex # Entry point with \input{src/...}
If user has no LaTeX project, download the default IEEE conference template:
https://ras.papercept.net/conferences/support/files/ieeeconf.zip
Split large .tex files. In main.tex, use:
\input{src/introduction}
\input{src/methods}
\input{src/results}
python <skill-dir>/scripts/generate_tex_for_assets.py <project-root>
Requires in preamble:
\usepackage{graphicx}
\usepackage{caption}
\usepackage[table]{xcolor}
% \cellcolor{top1}3.14
\definecolor{top1}{rgb}{0.996, 0.851, 0.380} % Gold
\definecolor{top2}{rgb}{0.675, 0.843, 0.557} % Light green
\definecolor{top3}{rgb}{0.663, 0.914, 0.894} % Cyan
USE this skill when:
.tex file to organizeDO NOT use when:
.tex files in assets/ can be customized after generation共 1 个版本