Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

latex-conference-template-organizer乳胶会议模板组织者

Agent Skill

latex-conference-template-organizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,764

周安装

75

GitHub Stars

3,480

下载量

618
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:latex-conference-template-organizer(乳胶会议模板组织者)
来源仓库:https://github.com/galaxy-dawn/claude-scholar
仓库路径:skills/latex-conference-template-organizer
安装命令:
npx skills add https://github.com/galaxy-dawn/claude-scholar --skill latex-conference-template-organizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/galaxy-dawn/claude-scholar --skill latex-conference-template-organizer

简介

用于查找、检索和筛选相关信息。latex-conference-template-organizer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 进一步核验用法。
  • 安装前建议确认权限范围和维护状态。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

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:

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 TypePurpose
.texLaTeX source files
.sty / .clsStyle files
.bibBibliography database
.pdf / .png / .jpgImage files

Identify Main File

Common main file names:

  • main.tex
  • paper.tex
  • document.tex
  • sample-sigconf.tex
  • template.tex

Identification methods:

  1. Check if filename matches common patterns
  2. Search for files containing \documentclass
  3. If multiple candidates exist, ask user to confirm
# Find files containing \documentclass
grep -l "\\documentclass" *.tex

Step 2: Diagnose Issues

Present discovered issues to the user:

Disorganized File Structure

  • Multi-level directory nesting
  • .tex files scattered across directories
  • Unclear which file is the main file

Redundant Content

Detect the following patterns and flag for cleanup:

  • Filenames containing: sample, example, demo, test
  • Comments containing: sample, example, template, delete this

Dependency Issues

  • Referenced .sty/.cls files missing
  • Image/table reference paths incorrect

Step 3: Ask for Conference Information

Ask the user for the following information:

Please provide the following information (optional):

1. **Conference submission link** (recommended): Used to extract official submission requirements
2. **Conference name**: If no link available
3. **Other special requirements**: Such as page limits, anonymity requirements, etc.

Step 4: Present Cleanup Plan

Present the cleanup plan to the user and wait for confirmation:

## Cleanup Plan

### Issues Found
- [List diagnosed issues]

### Cleanup Approach
1. Main file: main.tex (clean example content)
2. Section separation: text/ directory
3. Resource directories: figures/, tables/, styles/

### Output Structure
[Show output directory structure]

Confirm execution? [Y/n]

Step 5: Execute Cleanup

Create Output Directory Structure

mkdir -p output/{text,figures,tables,styles}

Clean Up Main File (main.tex)

Keep:

  • \documentclass declaration
  • Required package imports
  • Core configuration (e.g., anonymous mode)

Remove:

  • Example section content
  • Verbose instructional comments
  • Example author/title information

Add:

  • Import sections with \input{text/XX-section}

Example main.tex structure (ACM template standard format):

\documentclass[...]{...}  % Keep original template document class

% Required packages (keep original template package declarations)

%% ============================================================================
%% Preamble: Before \begin{document}
%% ============================================================================

%% Title and author information
\title{Your Paper Title}
\author{Author Name}
\affiliation{...}

%% Abstract (in preamble, before \maketitle)
\begin{abstract}
% TODO: Write abstract content
\end{abstract}

%% CCS Concepts and Keywords (in preamble)
\begin{CCSXML}
<ccs2012>
   <concept>
       <concept_id>10010405.10010444.10010447</concept_id>
       <concept_desc>Applied computing~...</concept_desc>
       <concept_significance>500</concept_significance>
   </concept>
</ccs2012>
\end{CCSXML}

\ccsdesc[500]{Applied computing~...}
\keywords{keyword1, keyword2, keyword3}

%% ============================================================================
%% Document Body
%% ============================================================================
\begin{document}

\maketitle

%% Section content (imported from text/)
\input{text/01-introduction}
\input{text/02-related-work}
\input{text/03-method}
\input{text/04-experiments}
\input{text/05-conclusion}

\bibliographystyle{...}
\bibliography{references}

\end{document}

KDD 2026 Anonymous Submission Special Configuration

For KDD 2026 (using ACM acmart template), add the nonacm option to the document class to remove footnotes:

%% ============================================================================
%% Document Class - KDD 2026 Anonymous Submission Configuration
%% Submission version: \documentclass[sigconf,anonymous,review,nonacm]{acmart}
%% Camera-ready: \documentclass[sigconf]{acmart}
%% ============================================================================
\documentclass[sigconf,anonymous,review,nonacm]{acmart}

%% ============================================================================
%% Disable ACM metadata (submission version only)
%% ============================================================================
\settopmatter{printacmref=false}  % Disable ACM Reference Format
\setcopyright{none}               % Disable copyright notice
\acmConference[]{}{}{}            % Clear conference info (removes footnote)
\acmYear{}                        % Clear year
\acmISBN{}                        % Clear ISBN
\acmDOI{}                         % Clear DOI

%% Content to restore for camera-ready version:
%% \acmConference[KDD '26]{Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining}{August 09--13, 2026}{Jeju, Korea}
%% \acmISBN{978-1-4503-XXXX-X/26/08}
%% \acmDOI{10.1145/nnnnnnn.nnnnnnn}

Create Section Files (text/)

Create independent.tex files for each section, containing only section content without \begin{document} etc.:

text/01-introduction.tex:

\section{Introduction}
% TODO: Write introduction content

text/02-related-work.tex:

\section{Related Work}
% TODO: Write related work content

text/03-method.tex:

\section{Method}
% TODO: Write method content

text/04-experiments.tex:

\section{Experiments}
% TODO: Write experiments content

text/05-conclusion.tex:

\section{Conclusion}
% TODO: Write conclusion content

Important notes:

  • Abstract should be placed in main.tex preamble (before \begin{document}), after \maketitle
  • Files in text/ contain only sections, starting with \section{...}
  • Do not include \begin{document} or other wrappers in text/ files

Copy Style Files (styles/)

Copy all .sty and .cls files from the original template to styles/:

find /tmp/latex-template-temp -type f \( -name "*.sty" -o -name "*.cls" \) -exec cp {} output/styles/ \;

Note: Maintain the original template's directory structure (e.g., acmart/), only move to styles/.

Handle Images and Tables

# Copy image files
find /tmp/latex-template-temp -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" -o -name "*.pdf" \) -exec cp {} output/figures/ \;

# Copy table files (if any)
find /tmp/latex-template-temp -type f -name "*.tex" | grep -i table | while read f; do cp "$f" output/tables/; done

Create Example Table File

Important: Overleaf automatically deletes empty directories. To prevent the tables/ directory from being deleted, create an example table file:

# Create example table file
cat > output/tables/example-table.tex << 'EOF'
% Example table file
% Can be deleted or replaced with your own tables

\begin{table}[h]
    \centering
    \caption{Example Table}
    \label{tab:example}
    \begin{tabular}{lccc}
        \toprule
        Method & Metric 1 & Metric 2 & Metric 3 \\
        \midrule
        Baseline & 85.3 & 12.4 & 0.92 \\
        Method A & 87.1 & 11.8 & 0.95 \\
        \textbf{Ours} & \textbf{89.4} & \textbf{10.2} & \textbf{0.97} \\
        \bottomrule
    \end{tabular}
\end{table}
EOF

Notes:

  • If the original template already has table files, this step can be skipped
  • The example table is only to prevent directory deletion; it can be deleted or replaced
  • Reference tables in the paper using \input{tables/example-table.tex} or copy table content directly into section files

Copy Bibliography

# Copy .bib files
find /tmp/latex-template-temp -type f -name "*.bib" -exec cp {} output/ \;

Step 6: Generate README

Information Source Priority

  1. Conference link provided by user → Extract using WebFetch
  2. Template file comments → Extract from.tex files
  3. Default inference → Infer from \documentclass

README Template

# [Conference Name] Submission Template

## Template Information
- **Conference**: [Conference name]
- **Website**: [Conference link]
- **Template version**: [From template or website]
- **Document class**: [Extracted documentclass]

## Submission Requirements

### Page and Format
- **Page limit**: [From website or template]
- **Two-column/Single-column**: [Detect layout]
- **Font size**: [10pt/11pt etc.]

### Anonymity Requirements
- **Blind review required**: [Detect template mode]
- **Author information handling**: [Instructions]

### Compilation Requirements
- **Recommended compiler**: [XeLaTeX/pdfLaTeX/LuaLaTeX]
- **Special package requirements**: [If any]

## Overleaf Usage

### Upload Steps
1. Create a new project on Overleaf
2. Upload the entire `output/` directory
3. Set compiler to [specified compiler]
4. Click Recompile to test

### File Description
- `main.tex` - Main file, start here
- `text/` - Section content, edit as needed
- `figures/` - Place images here
- `tables/` - Place tables here
- `styles/` - Style files, no modification needed
- `references.bib` - Bibliography database

## Common Operations

### Adding Images

\begin{figure}[h] \centering \includegraphics[width=0.8\linewidth]{figures/your-image.pdf} \caption{Image caption} \label{fig:your-label} \end{figure}


### Adding Tables

\begin{table}[h] \centering \begin{tabular}{|c|c|} \hline Column 1 & Column 2 \\ \hline Content 1 & Content 2 \\ \hline \end{tabular} \caption{Table caption} \label{tab:your-label} \end{table}


### Adding References

Add entries to `references.bib` and cite in text using `\cite{key}`.

## Notes

- [Warnings extracted from template comments]
- [Important notes extracted from website]

Extract Information from Website (if user provided a link)

Use WebFetch to get conference submission page content and extract:

  • Page limits
  • Anonymity requirements
  • Format requirements
  • Submission deadlines

Step 7: Cleanup and Output

# Clean up temporary files
rm -rf /tmp/latex-template-temp

# Output completion message
echo "Template cleanup complete! Output directory: output/"
echo "Please upload the output/ directory to Overleaf to test compilation."

Error Handling

Error ScenarioHandling Approach
Main file not foundList all.tex files, let user choose
Dependency file missingWarn user, attempt to locate from template directory
Cannot extract conference infoUse default info from template, mark as [To be confirmed]
Website inaccessibleFall back to template comments, prompt user to fill in manually
Extraction failedPrompt user to check.zip file integrity

Common Conference Template Types

ConferenceDocument ClassNotes
KDD (ACM SIGKDD)acmartAnonymous submission requires nonacm option to remove footnotes
ACM ConferencesacmartRequires anonymous mode \acmReview{anonymous}
CVPR/ICCVcvprTwo-column, strict page limits
NeurIPSneurips_2025Anonymous review, no page limit
ICLRiclr2025_conferenceTwo-column, requires session info
AAAIaaai25Two-column, 8 pages + references

KDD Anonymous Submission Configuration Notes

KDD 2026 uses the ACM acmart template and requires special configuration for anonymous submission:

Submission version (remove all ACM metadata footnotes):

\documentclass[sigconf,anonymous,review,nonacm]{acmart}
\settopmatter{printacmref=false}
\setcopyright{none}
\acmConference[]{}{}{}
\acmYear{}
\acmISBN{}
\acmDOI{}

Camera-ready version (restore ACM metadata):

\documentclass[sigconf]{acmart}
\settopmatter{printacmref=true}
\setcopyright{acmcopyright}
\acmConference[KDD '26]{...}{...}{...}
\acmYear{2026}
\acmISBN{978-1-4503-XXXX-X/26/08}
\acmDOI{10.1145/nnnnnnn.nnnnnnn}

Quick Reference

Detect Document Type

# Detect document class
grep "\\documentclass" main.tex

# Detect anonymous mode
grep -i "anonymous\|review\|blind" main.tex

# Detect page settings
grep "pagelimit\|pageLimit\|page_limit" main.tex

Common Cleanup Patterns

# Remove example files
rm -f sample-* example-* demo-* test-*

# Remove temporary files
rm -f *.aux *.log *.out *.bbl *.blg

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.49%
按下载量换算232

Claude

30.73%
按下载量换算190

Cursor

17.82%
按下载量换算110

Gemini CLI

8.92%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills