ワンクリックで
generating-writeup
Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate commit message for staged changes, pause for approval, then commit. Stage files first with `git add`, then run this skill.
Context compression for verbose outputs. Use when conversation context exceeds 70% capacity or when summarizing large outputs.
Evidence-based codebase investigation. Use when exploring unfamiliar code, understanding architecture, or gathering context for implementation.
| name | generating-writeup |
| description | Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations. |
| compatibility | Designed for Claude Code |
| metadata | {"allowed-tools":"Read, Write, Edit, Bash, Glob, Grep"} |
Creates structured technical documentation in Pandoc-compatible markdown. Suitable for academic papers, technical reports, and documentation.
template.md for syntax---
title: "Document Title"
author: "Author Name"
date: YYYY-MM-DD
bibliography: references.bib
reference-section-title: References
abstract: |
Brief summary of document contents and key findings.
---
See template.md in this skill directory for full template with
frontmatter, BibTeX examples, and directory structure.
| Style | Format | Example |
|---|---|---|
| IEEE | numeric | [1] |
| APA | author-date | (Author, 2024) |
| Chicago | author-date | (Author 2024) |
| Vancouver | numeric | (1) |
Alternatives available from the Zotero Style Repository.
Code Blocks:
# Use language hints for syntax highlighting
def example():
return "formatted code"
Tables:
| Header 1 | Header 2 |
|---|---|
| Data | Data |
Citations:
Use [@citation-key] for Pandoc citations.
Math:
Inline: $E = mc^2$
Block: $$\int_0^\infty f(x) dx$$
# Generate PDF from markdown sections
pandoc 0*.md -o output.pdf --citeproc --number-sections
CRITICAL: NEVER add manual section numbers to headings.
Use --number-sections flag in pandoc. Manual "2. Section" creates
duplicate numbering in PDFs.
Academic: Full structure with abstract, citations, formal language Technical: Focused on implementation, code examples, diagrams Report: Executive summary, findings, recommendations