pandoc-7-citations-and-bibliography
Sub-skill of pandoc: 7. Citations and Bibliography (+1).
Best use case
pandoc-7-citations-and-bibliography is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of pandoc: 7. Citations and Bibliography (+1).
Teams using pandoc-7-citations-and-bibliography should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/7-citations-and-bibliography/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How pandoc-7-citations-and-bibliography Compares
| Feature / Agent | pandoc-7-citations-and-bibliography | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of pandoc: 7. Citations and Bibliography (+1).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 7. Citations and Bibliography (+1)
## 7. Citations and Bibliography
```bibtex
%% references.bib
@article{smith2024,
author = {Smith, John and Doe, Jane},
title = {Advanced Documentation Techniques},
journal = {Journal of Technical Writing},
year = {2024},
volume = {15},
number = {3},
pages = {42--58},
doi = {10.1234/jtw.2024.001}
}
@book{johnson2023,
author = {Johnson, Robert},
title = {The Complete Guide to Markdown},
publisher = {Tech Press},
year = {2023},
address = {New York},
isbn = {978-0-123456-78-9}
}
@inproceedings{williams2025,
author = {Williams, Sarah},
title = {Document Automation Best Practices},
booktitle = {Proceedings of DocCon 2025},
year = {2025},
pages = {100--115},
organization = {Documentation Society}
}
@online{pandocmanual,
author = {{Pandoc Contributors}},
title = {Pandoc User's Guide},
year = {2024},
url = {https://pandoc.org/MANUAL.html},
urldate = {2024-01-15}
}
```
```markdown
<!-- document.md with citations -->
---
title: "Research Paper"
bibliography: references.bib
csl: apa.csl
---
# Literature Review
According to @smith2024, documentation is essential for
project success. This aligns with earlier findings
[@johnson2023; @williams2025].
The standard approach uses markdown formatting
[see @pandocmanual, chapter 3].
Multiple citations can be grouped together
[@smith2024; @johnson2023, pp. 15-20].
# References
::: {#refs}
:::
```
```bash
# Generate PDF with citations
pandoc document.md -o document.pdf \
--citeproc \
--bibliography=references.bib \
--csl=apa.csl \
--pdf-engine=xelatex
# Download CSL styles
# https://github.com/citation-style-language/styles
curl -O https://raw.githubusercontent.com/citation-style-language/styles/master/apa.csl
curl -O https://raw.githubusercontent.com/citation-style-language/styles/master/ieee.csl
curl -O https://raw.githubusercontent.com/citation-style-language/styles/master/chicago-author-date.csl
```
## 8. Cross-References with pandoc-crossref
```bash
# Install pandoc-crossref
# macOS
brew install pandoc-crossref
# Or download from releases
# https://github.com/lierdakil/pandoc-crossref/releases
```
```markdown
<!-- document.md with cross-references -->
---
title: "Document with Cross-References"
---
# Introduction
See @fig:architecture for the system overview.
The data flow is described in @sec:dataflow.
Results are shown in @tbl:results.
The equation @eq:formula describes the relationship.
# System Architecture {#sec:architecture}
{#fig:architecture}
# Data Flow {#sec:dataflow}
The process follows these steps...
# Results
| Metric | Value | Unit |
|--------|-------|------|
| Speed | 100 | ms |
| Memory | 256 | MB |
: Performance metrics {#tbl:results}
# Mathematical Model
The core formula is:
$$ E = mc^2 $$ {#eq:formula}
Equation @eq:formula shows Einstein's famous equation.
```
```bash
# Generate PDF with cross-references
pandoc document.md -o document.pdf \
--filter pandoc-crossref \
--citeproc \
--pdf-engine=xelatex \
--number-sections
# pandoc-crossref options in YAML
# ---
# figureTitle: "Figure"
# tableTitle: "Table"
# listingTitle: "Listing"
# figPrefix: "Fig."
# tblPrefix: "Table"
# eqnPrefix: "Eq."
# secPrefix: "Section"
# ---
```Related Skills
pandoc-subsection
Sub-skill of pandoc: Subsection.
pandoc-integration-with-git-hooks
Sub-skill of pandoc: Integration with Git Hooks (+1).
pandoc-9-lua-filters
Sub-skill of pandoc: 9. Lua Filters.
pandoc-5-custom-latex-templates
Sub-skill of pandoc: 5. Custom LaTeX Templates (+1).
pandoc-2-image-management
Sub-skill of pandoc: 2. Image Management (+2).
pandoc-11-makefile-for-document-projects
Sub-skill of pandoc: 11. Makefile for Document Projects (+1).
pandoc-10-batch-conversion-scripts
Sub-skill of pandoc: 10. Batch Conversion Scripts.
pandoc-1-basic-format-conversion
Sub-skill of pandoc: 1. Basic Format Conversion (+3).
docx-extract-text-with-pandoc
Sub-skill of docx: Extract Text with Pandoc (+2).
test-oversized-skill
A test fixture skill that exceeds 200 lines with multiple H2/H3 sections for split testing.
interactive-report-generator
Generate interactive HTML reports with Plotly visualizations from data analysis results. Supports dashboards, charts, and professional styling.
data-validation-reporter
Generate interactive validation reports with quality scoring, missing data analysis, and type checking. Combines Pandas validation, Plotly visualization, and YAML configuration for comprehensive data quality reporting.