Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
terrylica avatar

Pandoc Pdf Generation

  • 503 installs
  • 62 repo stars
  • Updated August 3, 2026
  • terrylica/cc-skills

pandoc-pdf-generation is a Claude Code skill that converts Markdown to professional PDFs via Pandoc and XeLaTeX for developers who need numbered sections, bibliographies, and production-tuned LaTeX output.

About

pandoc-pdf-generation is a documentation build skill in terrilyca/cc-skills doc-tools plugin for Pandoc PDF workflows. It ships `build-pdf.sh` and `table-spacing-template.tex` assets supporting landscape default, `--portrait`, `--monospace` for ASCII diagrams, and `--hide-details` to strip `<details>` blocks from print output. Quick commands use `--pdf-engine=xelatex`, `--toc`, `--number-sections`, and DejaVu fonts; the universal script auto-detects single `.md` inputs, `references.bib`, and CSL files with pre-flight and post-build validation. Seven reference guides cover markdown structure, YAML front matter, LaTeX parameters, bibliographies, document patterns, and troubleshooting. The skill mandates graph-easy via `itp:graph-easy` for diagrams—not hand-typed ASCII—and includes printing workflows with `lpr` duplex flags after user PDF review. Developers reach for it when agents must render architecture docs, ADRs, or handouts from repo markdown without broken tables or duplicate section numbers.

  • pandoc-pdf-generation

Pandoc Pdf Generation by the numbers

  • 503 all-time installs (skills.sh)
  • +6 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #814 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/terrylica/cc-skills --skill pandoc-pdf-generation

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs503
repo stars62
Last updatedAugust 3, 2026
Repositoryterrylica/cc-skills

How do you convert Markdown to PDF with Pandoc?

Use pandoc-pdf-generation for development tasks

Who is it for?

Developers generating print-ready technical PDFs from Markdown with Pandoc, XeLaTeX, and repeatable build-pdf.sh automation.

Skip if: Teams needing interactive HTML docs only or PDFs without installing Pandoc, XeLaTeX, and DejaVu fonts locally.

When should I use this skill?

User asks to convert markdown to PDF, run pandoc with xelatex, print a technical document, or fix LaTeX table/TOC issues.

What you get

XeLaTeX-rendered PDF with TOC, section numbers, optional bibliography, and validated page count/file size.

  • PDF document
  • Optional bibliography-rendered output
  • Validated build logs

By the numbers

  • Bundles 2 production assets: build-pdf.sh and table-spacing-template.tex
  • Includes 7 reference markdown guides under references/
  • Supports 4 CLI modes: default landscape, --portrait, --monospace, --hide-details

Files

SKILL.mdMarkdownGitHub ↗

Pandoc PDF Generation

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

Overview

Generate professional PDF documents from Markdown using Pandoc with the XeLaTeX engine. This skill covers automatic section numbering, table of contents, bibliography management, LaTeX customization, and common troubleshooting patterns learned through production use.

When to Use This Skill

Use this skill when:

  • Converting Markdown to PDF with professional formatting requirements
  • Needing automatic section numbering and table of contents
  • Managing citations and bibliographies without manual duplication
  • Controlling table formatting and page breaks in LaTeX output
  • Building automated PDF generation workflows

Quick Start: Universal Build Script

Single Source of Truth Pattern

This skill provides production-proven assets in ${CLAUDE_PLUGIN_ROOT}/skills/pandoc-pdf-generation/assets/:

  • table-spacing-template.tex - Production-tuned LaTeX preamble (booktabs, colortbl, ToC fixes)
  • build-pdf.sh - Universal auto-detecting build script

From Any Project

/usr/bin/env bash << 'DETECT_EOF'
# Create symlink once per project (git-friendly)
ln -s ${CLAUDE_PLUGIN_ROOT}/skills/pandoc-pdf-generation/assets/build-pdf.sh build-pdf.sh

# Auto-detect single .md file in directory (landscape default)
./build-pdf.sh

# Portrait mode
./build-pdf.sh --portrait document.md

# Monospace font for ASCII diagrams
./build-pdf.sh --monospace diagrams.md

# Explicit input/output
./build-pdf.sh input.md output.pdf
DETECT_EOF

Options:

FlagDescription
--landscapeLandscape orientation (default)
--portraitPortrait orientation
--monospaceUse DejaVu Sans Mono - ideal for ASCII diagrams
--hide-detailsHide <details> blocks (e.g., graph-easy source) from PDF
-h, --helpShow help message

Features:

  • ✅ Auto-detects input file (if single .md exists)
  • ✅ Auto-detects bibliography (references.bib) and CSL files
  • ✅ Always uses production-proven LaTeX preamble from skill
  • ✅ Pre-flight checks (pandoc, xelatex, files exist)
  • ✅ Post-build validation (file size, page count)
  • ✅ Code blocks stay on same page (no splitting across pages)
  • ✅ Lua filter to hide <details> blocks from PDF output

Landscape PDF (Quick Command)

For landscape PDFs with blue hyperlinks (no build-pdf.sh dependency):

pandoc file.md -o file.pdf \
  --pdf-engine=xelatex \
  -V geometry:a4paper,landscape \
  -V geometry:margin=1in \
  -V fontsize=11pt \
  -V mainfont="DejaVu Sans" \
  -V colorlinks=true \
  -V linkcolor=blue \
  -V urlcolor=blue \
  --toc --toc-depth=2 \
  --number-sections

Use landscape for: Wide data tables, comparison matrices, technical docs with code blocks.

Manual Command (With LaTeX Preamble)

/usr/bin/env bash << 'SKILL_SCRIPT_EOF'
pandoc document.md \
  -o document.pdf \
  --pdf-engine=xelatex \
  --toc \
  --toc-depth=3 \
  --number-sections \
  -V geometry:margin=1in \
  -V mainfont="DejaVu Sans" \
  -H ${CLAUDE_PLUGIN_ROOT}/skills/pandoc-pdf-generation/assets/table-spacing-template.tex
SKILL_SCRIPT_EOF

---

ASCII Diagrams: Always Use graph-easy

CRITICAL: Never manually type ASCII diagrams. Always use the itp:graph-easy skill.

Manual ASCII art causes alignment issues in PDFs. The graph-easy skill ensures:

  • Proper boxart character alignment
  • Consistent spacing
  • Reproducible output
# Invoke the skill for general diagrams
Skill(itp:graph-easy)

# For ADR architecture diagrams
Skill(itp:adr-graph-easy-architect)

Also important: Keep annotations OUTSIDE code blocks. Don't add inline comments like # contains: file1, file2 inside diagram code blocks - they break alignment.

---

Hiding Content for PDF Output

Use --hide-details to remove <details> blocks from PDF output. This is useful when:

  • graph-easy source blocks: Keep source in markdown for diagram regeneration, but hide from printed PDFs
  • Technical implementation notes: Show in web/markdown view, hide from printed handouts
  • Collapsible sections: HTML <details> tags don't render as collapsible in PDF

Usage:

./build-pdf.sh --hide-details document.md

Markdown pattern:

````markdown

My Section

┌─────┐     ┌─────┐
│ Box │ ──> │ Box │
└─────┘     └─────┘

````

<details> <summary>graph-easy source</summary>

[Box] -> [Box]

</details>


With `--hide-details`, the entire `<details>` block is stripped from PDF output while remaining visible in markdown/HTML.

---

## Verification Checklist

Before considering a PDF "done", verify:

**Pre-Generation:**

- [ ] No manual section numbering in markdown (use `--number-sections`)
- [ ] All ASCII diagrams generated via `itp:graph-easy` skill
- [ ] Annotations are outside code blocks, not inside

**Post-Generation:**

- [ ] Open PDF and visually inspect each page
- [ ] Verify diagrams don't break across pages
- [ ] Check section numbering is correct (no "1. 1. Title" duplication)
- [ ] Confirm bullet lists render as bullets, not inline dashes

**Pre-Print:**

- [ ] Get user approval before printing
- [ ] Confirm orientation preference (landscape/portrait)
- [ ] Confirm duplex preference (one-sided/two-sided)

---

## Printing Workflow

Always let the user review the PDF before printing.

**Open for review:**

open output.pdf


**Print one-sided (simplex):**

lpr -P "PRINTER_NAME" -o Duplex=None output.pdf


**Print two-sided (duplex):**

lpr -P "PRINTER_NAME" -o Duplex=DuplexNoTumble output.pdf # Long-edge binding lpr -P "PRINTER_NAME" -o Duplex=DuplexTumble output.pdf # Short-edge binding


**Find printer name:**

lpstat -p -d


**Never print without user approval** - this wastes paper if issues exist.

---

## Reference Documentation

For detailed information, see:

- [Core Development Principles](./references/core-principles.md) - **START HERE** - Universal principles learned from production failures
- [Markdown for PDF](./references/markdown-for-pdf.md) - Markdown structure patterns for clean landscape PDFs
- [YAML Front Matter Structure](./references/yaml-structure.md) - YAML metadata patterns
- [LaTeX Customization](./references/latex-parameters.md) - Preamble and table formatting
- [Bibliography & Citations](./references/bibliography-citations.md) - BibTeX and CSL styles
- [Document Patterns](./references/document-patterns.md) - Document type templates
- [Troubleshooting](./references/troubleshooting-pandoc.md) - Common issues and fixes

---

## Troubleshooting

| Issue                         | Cause                        | Solution                                          |
| ----------------------------- | ---------------------------- | ------------------------------------------------- |
| Font not found                | DejaVu Sans not installed    | `brew install font-dejavu`                        |
| xelatex not found             | MacTeX not installed         | `brew install --cask mactex`                      |
| Table breaks across pages     | Missing longtable package    | Include table-spacing-template.tex preamble       |
| Double section numbers        | Manual numbering in markdown | Remove manual numbers, use --number-sections only |
| ASCII diagram misaligned      | Manual ASCII art             | Use graph-easy skill for all diagrams             |
| Bullet list renders as dashes | Markdown formatting issue    | Check for proper blank lines before lists         |
| Bibliography not rendering    | Missing references.bib       | Create .bib file or remove --bibliography flag    |
| PDF file size too large       | Embedded fonts               | Use --pdf-engine-opt=-dEmbedAllFonts=false        |

## Post-Execution Reflection

After this skill completes, check before closing:

1. **Did the command succeed?** — If not, fix the instruction or error table that caused the failure.
2. **Did parameters or output change?** — If the underlying tool's interface drifted, update Usage examples and Parameters table to match.
3. **Was a workaround needed?** — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround.

Only update if the issue is real and reproducible — not speculative.

Related skills

How it compares

Use pandoc-pdf-generation for print-grade LaTeX PDFs from markdown; use simpler HTML export when pagination and bibliographies are unnecessary.

FAQ

What engines does pandoc-pdf-generation require?

pandoc-pdf-generation requires Pandoc with the XeLaTeX engine (`--pdf-engine=xelatex`), plus DejaVu fonts. Troubleshooting suggests `brew install font-dejavu` and MacTeX when `xelatex` is missing.

What does build-pdf.sh auto-detect?

pandoc-pdf-generation's build-pdf.sh auto-detects a single `.md` file in the directory, optional `references.bib` and CSL files, runs pre-flight binary checks, and validates output file size and page count post-build.

How does pandoc-pdf-generation handle diagrams?

pandoc-pdf-generation forbids hand-typed ASCII diagrams and directs agents to invoke the `itp:graph-easy` skill so box-drawing characters align correctly in LaTeX PDF output.

Backend & APIsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.