create-quarto-report
정보
이 Claude Skill은 재현 가능한 보고서, 프레젠테이션, 웹사이트를 위한 Quarto 문서를 생성하며, YAML 설정과 HTML, PDF, Word 같은 다양한 출력 형식을 처리합니다. 내장된 코드가 포함된 분석물을 생성하거나 R Markdown에서 전환할 때 이상적입니다. 개발자는 코드로부터 일관된 렌더링이 필요한 데이터 기반 문서를 구축할 때 이 Skill을 사용해야 합니다.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/create-quarto-reportClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
建 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 支持之出式(html、pdf、docx、revealjs)。
第二步:書內容含碼塊
## 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}
{#fig-plotA}
{#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
得: 出文件生於指定式。
敗則:
- 缺 quarto:由 https://quarto.org/docs/get-started/ 裝
- PDF 訛:以
quarto install tinytex裝 TinyTeX - R 包訛:確諸包已裝
第六步:多式出
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: pdf與pdf-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 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
