Back to Skills

create-quarto-report

pjt222
Updated Yesterday
4 views
17
2
17
View on GitHub
Metapdfwordpowerpointdesign

About

This Claude Skill creates Quarto documents for reproducible reports, presentations, and websites, handling YAML configuration and multiple output formats like HTML, PDF, and Word. It's ideal for generating analyses with embedded code or migrating from R Markdown. Developers should use it when building data-driven documents that require consistent rendering from code.

Quick Install

Claude Code

Recommended
Primary
npx skills add pjt222/agent-almanac -a claude-code
Plugin CommandAlternative
/plugin add https://github.com/pjt222/agent-almanac
Git CloneAlternative
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/create-quarto-report

Copy and paste this command in Claude Code to install this skill

Documentation

建 Quarto 報告

設建可重現之 Quarto 文檔,為析報、演示、網站。

用時

  • 建可重現之析報
  • 建含嵌碼之演示
  • 由碼生 HTML、PDF、Word 文檔
  • 由 R Markdown 遷至 Quarto

  • 必要:報題與目標聽者
  • 必要:出式(html、pdf、docx、revealjs)
  • 可選:數源與析碼
  • 可選:引目(.bib 文件)

第一步:建 Quarto 文檔

report.qmd

---
title: "Analysis Report"
author: "Author Name"
date: today
format:
  html:
    toc: true
    toc-depth: 3
    code-fold: true
    theme: cosmo
    self-contained: true
execute:
  echo: true
  warning: false
  message: false
bibliography: references.bib
---

得: report.qmd 文件存,有合法 YAML 前言,含題、作者、日、式配、執選。

敗則: 驗 YAML 頭之 --- 界相配而縮進正。確 format: 合 Quarto 支持之出式(htmlpdfdocxrevealjs)。

第二步:書內容含碼塊

## Introduction

This report analyzes the relationship between variables X and Y.

## Data

```{r}
#| label: load-data
library(dplyr)
library(ggplot2)

data <- read.csv("data.csv")
glimpse(data)
```

## Analysis

```{r}
#| label: fig-scatter
#| fig-cap: "Scatter plot of X vs Y"
#| fig-width: 8
#| fig-height: 6

ggplot(data, aes(x = x_var, y = y_var)) +
  geom_point(alpha = 0.6) +
  geom_smooth(method = "lm") +
  theme_minimal()
```

As shown in @fig-scatter, there is a positive relationship.

## Results

```{r}
#| label: tbl-summary
#| tbl-cap: "Summary statistics"

data |>
  summarise(
    mean_x = mean(x_var),
    sd_x = sd(x_var),
    mean_y = mean(y_var),
    sd_y = sd(y_var)
  ) |>
  knitr::kable(digits = 2)
```

See @tbl-summary for descriptive statistics.

得: 內容節含正格之碼塊,有 {r} 語標識與 #| 塊選為標、題、尺。

敗則: 驗碼塊用 ```{r} 語法(非內聯撇),#| 選於塊內(非 YAML 頭),標前綴合交叉參類(fig- 為圖、tbl- 為表)。

第三步:設塊選

常見塊級選(用 #| 語法):

#| label: chunk-name        # Required for cross-references
#| echo: false               # Hide code
#| eval: false               # Show but don't run
#| output: false             # Run but hide output
#| fig-width: 8              # Figure dimensions
#| fig-height: 6
#| fig-cap: "Caption text"   # Enable @fig-name references
#| tbl-cap: "Caption text"   # Enable @tbl-name references
#| cache: true               # Cache expensive computations

得: 塊選於塊級以 #| 施,標循交叉參所需之名慣。

敗則: 確塊選用 #|(Quarto 原生),非舊 R Markdown 之 {r, option=value}。驗標名唯含字母數字與連字符。

第四步:加交叉參與引用

See @fig-scatter for the visualization and @tbl-summary for statistics.

This approach follows @smith2023 methodology.

::: {#fig-combined layout-ncol=2}
![Plot A](plot_a.png){#fig-plotA}
![Plot B](plot_b.png){#fig-plotB}

Combined figure caption
:::

得: 交叉參(@fig-name@tbl-name)解至正圖表,引用(@key)合 .bib 之項。

敗則: 驗所引之標存於碼塊且前綴正(fig-tbl-)。引用者察 .bib 鍵精合(辨大小),YAML 頭有 bibliography:

第五步:渲文檔

quarto render report.qmd

# Specific format
quarto render report.qmd --to pdf
quarto render report.qmd --to docx

# Preview with live reload
quarto preview report.qmd

得: 出文件生於指定式。

敗則:

第六步:多式出

format:
  html:
    toc: true
    theme: cosmo
  pdf:
    documentclass: article
    geometry: margin=1in
  docx:
    reference-doc: template.docx

渲諸式:quarto render report.qmd

得: 諸指定出式皆成,各有合式之樣與佈。

敗則: 若一式敗他成,察式專需:PDF 需 LaTeX 引擎(以 quarto install tinytex 裝),DOCX 需合法參樣(若指定),式專 YAML 選須正嵌於各式鍵下。

  • 文檔無訛而渲
  • 諸碼塊正執
  • 交叉參解(圖、表、引用)
  • 目錄正
  • 出式合聽者

  • 缺標前綴:可交叉參之圖需標有 fig-,表需 tbl-
  • 緩失效:緩塊於上游數變時不重運。刪 _cache/ 以迫之。
  • 無 LaTeX 之 PDF:裝 TinyTeX,或以 format: pdfpdf-engine: weasyprint 作基於 CSS 之 PDF
  • Quarto 中之 R Markdown 語法:用 #| 塊選代 {r, echo=FALSE}

  • format-apa-report — APA 格學術報
  • build-parameterized-report — 參化多報生
  • generate-statistical-tables — 可刊之表
  • write-vignette — R 包之 Quarto vignette

GitHub Repository

pjt222/agent-almanac
Path: i18n/wenyan/skills/create-quarto-report
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

Related Skills

content-collections

Meta

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

View skill

polymarket

Meta

This skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.

View skill

creating-opencode-plugins

Meta

This skill helps developers create OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It provides the plugin structure, event API specifications, and implementation patterns for JavaScript/TypeScript modules. Use it when you need to intercept, monitor, or extend the OpenCode AI assistant's lifecycle with custom event-driven logic.

View skill

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill