Back to list
NaoyaTakashima

paper-structure

by NaoyaTakashima

0🍴 0📅 Jan 10, 2026

SKILL.md


name: paper-structure description: Paper structure, LaTeX conventions, and citation format for this research project allowed-tools: Read, Grep, Glob

Paper Structure

Current Paper

  • Title: [Paper Title]
  • Target Venue: [Conference/Journal]
  • Deadline: [Submission Deadline]
  • Page Limit: [e.g., 8 pages + references]

Document Structure

paper/
├── main.tex           # Main document
├── sections/
│   ├── 01-intro.tex
│   ├── 02-related.tex
│   ├── 03-method.tex
│   ├── 04-experiments.tex
│   └── 05-conclusion.tex
├── figures/
├── tables/
└── references.bib

LaTeX Conventions

Figures

\begin{figure}[t]
  \centering
  \includegraphics[width=\linewidth]{figures/method.pdf}
  \caption{Our proposed method overview.}
  \label{fig:method}
\end{figure}

Tables

\begin{table}[t]
  \centering
  \caption{Comparison with baselines.}
  \label{tab:results}
  \begin{tabular}{lcc}
    \toprule
    Method & Accuracy & F1 \\
    \midrule
    Baseline & 0.85 & 0.83 \\
    Ours & \textbf{0.92} & \textbf{0.90} \\
    \bottomrule
  \end{tabular}
\end{table}

Citations

% Single author
\citet{Smith2023} showed that...
As shown in prior work~\citep{Smith2023}...

% Multiple authors
\citet{Smith2023,Jones2024} demonstrated...

Citation Format

BibTeX entries in references.bib:

@inproceedings{Smith2023,
  author    = {John Smith and Jane Doe},
  title     = {A Novel Approach to X},
  booktitle = {Proceedings of ABC 2023},
  year      = {2023},
  pages     = {1--10},
}

Key References

  1. [Foundation paper] - Smith et al., 2020
  2. [Baseline method] - Jones et al., 2022
  3. [Related approach] - Brown et al., 2023

Reproducibility Checklist

  • Random seeds documented
  • Hyperparameters in appendix
  • Dataset splits specified
  • Code repository linked
  • Compute resources listed

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon