---
name: Academic Reference Inserter
slug: academic-reference-inserter-3
category: Writing
description: Academic Reference Inserter inserts, formats, and cross-references citations in Word .docx documents. Use it to switch styles, validate references, reorder entries, or add clickable hyperlinks.
github: "https://github.com/fuwenhao12/academic-ref-inserter/tree/main/.qwen/skills/academic-ref-inserter"
language: Python
stars: 55
forks: 1
install: "npx degit https://github.com/fuwenhao12/academic-ref-inserter/tree/main/.qwen/skills/academic-ref-inserter ~/.claude/skills/academic-ref-inserter"
installs_to: ~/.claude/skills/academic-ref-inserter
source_path: .qwen/skills/academic-ref-inserter/SKILL.md
collection_size: 4
category_size: 1012
collection_url: "https://dirskills.com/collections/fuwenhao12/academic-ref-inserter"
added: 2026-08-12T04:44:06.699Z
last_synced: 2026-08-12T04:44:06.699Z
canonical_url: "https://dirskills.com/skills/academic-reference-inserter-3"
---

# Academic Reference Inserter

Academic Reference Inserter inserts, formats, and cross-references citations in Word .docx documents. Use it to switch styles, validate references, reorder entries, or add clickable hyperlinks.

**Install:**

```bash
npx degit https://github.com/fuwenhao12/academic-ref-inserter/tree/main/.qwen/skills/academic-ref-inserter ~/.claude/skills/academic-ref-inserter
```

## README

# Academic Reference Inserter

Insert, format, and cross-reference academic citations in Word documents.

## When to Use

Use this skill when the user asks about:
- Inserting or formatting academic citations/references
- Changing citation style to GB/T 7714, IEEE, or APA
- Adding clickable hyperlinks for cross-references in Word
- Validating or reordering references

## CLI Commands

All commands accept `--json` for structured output.

```bash
python scripts/insert_refs.py analyze   --input paper.docx --json
python scripts/insert_refs.py fix       --input paper.docx --format gbt7714
python scripts/insert_refs.py reformat  --input paper.docx --format ieee
python scripts/insert_refs.py validate  --input paper.docx --format apa7 --json
python scripts/insert_refs.py reorder   --input paper.docx
python scripts/insert_refs.py hyperlink --input paper.docx
```

## Formats

| Flag | Style | Ordering |
|------|-------|----------|
| `gbt7714` | GB/T 7714-2015 (Chinese) | Sequential [1] |
| `ieee` | IEEE (Engineering/CS) | Sequential [1] |
| `apa7` | APA 7th (Social Sciences) | Author-Year alphabetical |

## Requirements

```bash
pip install python-docx
```

Python 3.8+ required. See `.trae/skills/academic-ref-inserter/SKILL.md` for full documentation.
