OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add lingzhi227/agent-research-skills --skill table-generation
Generate publication-quality LaTeX tables from experimental results. Convert JSON/CSV data to booktabs-styled tables with bold best results, multi-row layouts, and proper captions. Use when creating result tables, comparison tables, or ablation tables for papers.
npx skills add lingzhi227/agent-research-skills --skill table-generation
Convert experimental results into publication-ready LaTeX tables.
$0 — Table type: comparison, ablation, descriptive, custom$1 — Data source: JSON file, CSV file, or inline dataSupports: comparison, ablation, descriptive, multi-dataset table types.
Additional flags: --type multi-dataset for methods x datasets x metrics layout, --significance for p-value stars, --underline-second for second-best results.
~/.claude/skills/table-generation/references/table-templates.mdcomparison — Main results table\multirow for method categories (Supervised, Self-supervised, etc.)ablation — Ablation study tabledescriptive — Dataset/statistics tablecustom — Free-form tableAlways generate tables with:
booktabs rules (\toprule, \midrule, \bottomrule)\caption{} and \label{tab:...}\textbf{}threeparttable when neededl for text, c or r for numbers)$\pm$ for standard deviations\underline{} for second-best results when appropriatetable* for wide tables spanning two columns\usepackage{booktabs} % \toprule, \midrule, \bottomrule
\usepackage{multirow} % \multirow
\usepackage{multicol} % multi-column layouts
\usepackage{threeparttable} % table notes