Purpose
Transform a scientific paper or paper-derived notes into a complete Chinese, figure-integrated PPTX presentation package with a Nature-style reporting logic.
The skill must not stop at an outline or script. The expected end product is a real .pptx deck. Keep supporting files minimal unless the user asks for more traceability.
Use this skill for papers across scientific fields, including:
- life sciences and medicine
- chemistry and materials science
- environmental and earth sciences
- physics and engineering
- computational biology, AI, and methods papers
- interdisciplinary Nature-family style research
- reviews, perspectives, resources, datasets, and benchmark papers
Core Principle
Use the paper's scientific argument as the presentation spine.
The default slide logic should help the audience answer, in order:
- Why does this problem matter?
- What gap or bottleneck does the paper address?
- What did the authors do?
- What is the key evidence?
- Why should we trust the result?
- What is new, reusable, or broadly meaningful?
- Where are the boundaries and open questions?
This is more important than copying the paper section order.
Lean Operating Mode
Default to the lowest-overhead workflow that still produces a usable PPTX.
Do:
- read only the source material needed to understand the paper's argument,
- extract only figures/tables that will actually appear in the deck,
- create the PPTX as the primary deliverable,
- run lightweight structural checks on the PPTX package,
- write a short QA report.
Avoid by default:
- exhaustive extraction of every figure, page, image, table, or supplement,
- full OCR unless normal text extraction fails or the PDF is scanned,
- saving full raw extracted paper text unless it is needed for debugging or reuse,
- installing new dependencies when an existing tool can complete the task,
- launching GUI apps or desktop automation just to render previews,
- generating long markdown scripts when the user only needs a deck,
- rendering every slide when no reliable headless renderer is available.
Toolchain Policy
Use a cross-platform Python-first stack unless the user explicitly asks for something else:
- PyMuPDF for metadata, text extraction, page rendering, and page-level crops,
- Pillow for figure crops, contact sheets, and lightweight preview images,
- python-pptx for slide authoring and PPTX-safe editing,
- zipfile plus a reopen pass through python-pptx for package validation.
This stack must work on macOS, Linux, and Windows. Use pathlib paths, project-local output directories, and Office-safe fonts or theme fonts. Do not hardcode OS font paths or platform-specific file locations. If Python packages are missing, create a local virtual environment and install the minimum packages only when policy permits; do not install broad document suites just to finish a normal deck.
Treat LibreOffice/soffice as optional, only when it is already available and a real rendered preview is worth the cost. Avoid Keynote, PowerPoint desktop automation, AppleScript, Preview, Finder, open, and any OS-specific font or path dependency in helper scripts. If a preview can be made from extracted slide objects or assets, prefer that over re-rendering the whole deck.
Ask or document the tradeoff before doing expensive extras such as full supplementary-material processing, high-resolution recreation of many figures, full slide-by-slide rendered QA, or very long decks.
Accepted Inputs
The skill may receive:
- a full paper PDF
- supplementary figures or tables
- Word or markdown converted paper text
- abstract + results + figure legends
- structured reading notes
- manually pasted article content
- an
input/source.md file
- a user-provided PPTX template
Default output language is simplified Chinese unless the user requests otherwise. Preserve important technical terms, abbreviations, gene/protein names, model names, dataset names, equations, and statistical terms in English when needed.
Default Fast Path
For a normal selectable-text paper PDF, run the shortest complete path:
- Extract metadata, abstract, headings, figure legends, and table captions with PyMuPDF.
- Identify the paper type, argument, and candidate figures before rendering high-resolution pages.
- Render low-resolution contact sheets only when figure locations are unclear.
- Render high-resolution images only for selected figure/table pages and crop only assets that will appear in the deck.
- Build the PPTX directly with python-pptx, using native tables/charts when values are explicit and figure crops when the original visual carries the evidence.
- Verify by reopening the PPTX and inspecting package structure; render slide previews only if a reliable cross-platform headless renderer is already available.
OCR, full supplementary extraction, all-page high-resolution rendering, all-slide rendered QA, and long script files are opt-in or justified exceptions, not defaults.
Workflow
Step 1. Read and extract source material
Extract, when available:
- title, authors, journal/preprint server, year, DOI
- field and subfield
- paper type
- central problem and knowledge gap
- main claim or thesis
- study design, workflow, model, dataset, or experimental system
- key methods and controls
- main results and quantitative findings
- key figures, tables, and figure legends
- validation, robustness, ablation, or sensitivity analyses
- limitations and unresolved questions
- broader scientific, clinical, technical, environmental, or translational meaning
Do not invent missing numbers, mechanisms, datasets, or figure details.
Use a two-pass reading strategy: first capture metadata, abstract, headings, figure legends, and table captions; then read only the result and methods pages needed to support the slides.
Step 2. Classify the paper before designing slides
Identify the primary paper type. Choose the closest fit:
- discovery / mechanism paper
- translational or applied science paper
- clinical or population study
- methods / algorithm / tool paper
- resource / dataset / atlas paper
- omics, single-cell, spatial, or multi-modal study
- materials / chemistry / engineering performance study
- environmental, ecological, or earth-system study
- benchmark / evaluation paper
- review / perspective / commentary
- meta-analysis / systematic review
Then identify the best presentation logic:
claim-first: useful when the paper has one strong central claim
question-to-evidence: useful for mechanism and discovery papers
problem-to-solution: useful for methods, tools, and engineering papers
workflow-to-validation: useful for datasets, atlases, omics, and benchmarks
evidence-map: useful for reviews and perspectives
Step 3. Build the Chinese presentation plan
Default length: 12-16 slides for a 15-20 minute report.
The default structure is:
- 标题页
- 研究背景:为什么这个问题重要
- 知识缺口 / 技术瓶颈
- 论文核心问题与主张
- 研究设计 / 技术路线 / 分析框架
- 关键证据1
- 关键证据2
- 关键证据3
- 验证、对照或稳健性证据
- 机制模型 / 方法优势 / 综合框架
- 创新点与可复用价值
- 局限性与未解决问题
- 总结与讨论
Adapt this structure to the paper type. Do not force every paper into the same template.
For a quick or unspecified request, prefer 10-14 slides. Expand beyond 16 slides only when the user asks for a detailed seminar deck or the paper genuinely needs the extra space to stay readable.
Step 4. Select figures as evidence, not decoration
Inspect the source for:
- graphical abstracts or summary models
- study design and workflow diagrams
- central result figures
- microscopy or imaging panels
- heatmaps, dimensionality reduction, networks, maps, or spatial plots
- survival curves, forest plots, calibration curves, or statistical result plots
- materials characterization and performance plots
- model architecture, benchmark, ablation, or error analysis figures
- key tables
- validation or control figures
Prioritize figures that carry the paper's argument:
- design/workflow,
- main evidence,
- validation or robustness,
- mechanism/model/synthesis,
- practical or conceptual implication.
Prefer a few readable key panels over many unreadable full figures.
Step 5. Extract and prepare figure assets
When the source contains usable figures:
- extract original images from the PDF or source package when possible, but only for selected figures,
- render high-resolution page images only for pages containing selected figures or tables,
- crop relevant panels when full figures are too dense,
- keep original data visuals unchanged,
- save images under
output/assets/figures/,
- use clear filenames such as
fig1_workflow.png, fig2b_main_result.png, or fig4ef_validation.png,
- record source page, figure number, panel, crop status, and intended slide in
output/asset_manifest.md.
For a standard 10-14 slide journal-club deck, usually select 4-8 figure/table assets. Add more only when they directly support distinct evidence slides.
For tables and simple quantitative comparisons, prefer editable PPT-native tables/charts when values are explicit in the paper text or table. Use table screenshots only when recreating the table would risk transcription errors or when layout/formatting itself is the evidence.
If extraction fails, use the best available fallback:
- rendered page screenshot with careful crop,
- recreated editable table only when values are explicitly available,
- clearly labeled placeholder only when the visual is unavailable.
Step 6. Write slide-by-slide content
For each slide, write:
- Chinese title
- slide purpose
- suggested layout
- 3-4 concise Chinese bullets
- selected figure or table asset, if any
- Chinese figure caption and interpretation
- one core takeaway sentence
- Chinese speaker note when oral explanation is useful
Each slide should make one point. Result slides should answer:
- What does this figure show?
- Why does it matter for the paper's claim?
- What should the audience believe after seeing it?
Speaker notes should be useful but concise. Do not write long narration for every slide when the slide content is self-explanatory.
Evidence hierarchy on a slide
For any result slide, order the visual logic like this:
- hero figure or main table crop,
- narrow interpretation rail or short annotation band,
- only the minimum labels needed to read the evidence,
- any deeper explanation moves to speaker notes or the next slide.
Do not let the interpretation block become as large or louder than the evidence itself.
Layout adaptation rule
Do not default to a fixed 50/50 left-right split.
Choose the layout from the figure's aspect ratio, density, and role in the argument:
- use a full-width or near-full-width visual when the figure is wide, complex, or the slide's main evidence,
- use a tall image with a narrow text rail when the figure is vertically oriented or the caption/interpretation is short,
- use a top/bottom stack when the figure needs more horizontal room or the slide benefits from a short argument above and a visual below,
- use an asymmetric split such as 70/30, 75/25, or 65/35 when one side clearly dominates,
- use a compact visual-plus-callout layout when the slide only needs a few annotations,
- use a table or figure crop instead of shrinking a dense graphic into a small frame.
Treat equal-weight 1:1 layouts as the exception, not the default. Use them only when the text and image truly carry comparable weight and neither needs dominance. In most result slides, one side should clearly dominate.
Prefer the smallest text block that still makes the claim legible. If the visual needs space, give it space; if the text is the main point, let the slide breathe and keep the figure smaller or move it to its own slide.
For dense figures or tables, crop to the most relevant panels and avoid squeezing them into equal columns. For sparse slides, do not pad the page with extra boxes just to fill space.
Slide archetype defaults
Use these defaults unless the source strongly suggests otherwise:
- Cover slide: one dominant visual or typographic idea, no balanced split, no dashboard-like grid.
- Background/problem slide: short setup text plus one compact context visual or schematic.
- Workflow/method slide: full-width or top-to-bottom process diagram, not two equal text/figure columns.
- Result/evidence slide: one dominant figure or table crop with a narrow interpretation rail; avoid 1:1 layouts unless the evidence and explanation truly balance.
- Comparison/table slide: full-width table or split table across slides if it becomes cramped.
- Model/summary slide: a large central model with a brief takeaway strip or short annotation band.
- Conclusion/discussion slide: text-led but open composition, with 2-4 bullets and no unnecessary containers.
Title writing rule
Use conclusion-style titles whenever possible. A good title states the slide's point, not just its topic. Prefer sentences like “PathAgent 主动识别信息不足并补充证据” over labels like “Case Study” or “Figure 3”.
Visual density rule
Do not downscale a dense figure, table, or multi-panel graphic into a tiny slot just to preserve symmetry. If a visual cannot be read at presentation scale, crop it, split it, or give it its own slide. Prefer one legible visual over several cramped ones.
Step 7. Build the actual PPTX deck
Create a real .pptx file as the primary deliverable.
Use python-pptx as the default authoring tool for scientific paper decks because it creates editable PPTX files and runs on macOS, Linux, and Windows. Use a user-provided PPTX template if supplied. Use the local Presentations plugin or other PPTX tooling only when it is already available and clearly reduces work without violating the cross-platform policy.
Use tools already available in the environment first. Install only the minimum Python dependencies when the PPTX cannot otherwise be created and the environment policy permits it.
The PPTX should:
- use 16:9 widescreen layout by default,
- include the selected original figures,
- use Chinese titles, bullets, captions, and speaker notes,
- include source labels for figure slides,
- keep slide text concise and readable,
- avoid text-only result slides when visuals are available,
- maintain consistent typography, spacing, titles, captions, and section transitions.
Use compact, evidence-first page composition. Avoid making every result slide a rigid two-column template or any balanced 1:1 scaffold. Let slide geometry follow the figure rather than forcing the figure to fit a template.
When a slide has one dominant figure, let that figure own the page. Keep the annotation rail narrow and short, and move secondary explanation into speaker notes or a follow-up slide rather than expanding the slide horizontally into a symmetrical split.
Step 8. Render, inspect, and revise
After creating the PPTX, render previews only when a reliable headless renderer is readily available.
If rendered previews are available, inspect them for:
- missing images,
- distorted or low-resolution figures,
- unreadable panels,
- text overflow,
- overlapping captions, bullets, and figures,
- excessive bullet density,
- wrong slide order,
- missing source labels,
- missing or unhelpful speaker notes.
If no reliable renderer is available, perform lightweight verification instead:
- reopen the PPTX with the generation library when possible,
- check slide count,
- check embedded media count,
- check speaker notes presence when notes were planned,
- check obvious shape bounds if tooling supports it,
- create a contact sheet from selected extracted assets only if helpful, not a full-deck screenshot set.
Revise obvious defects. Document any remaining limitation in output/qa_report.md.
Paper-Type Guidance
Discovery / mechanism papers
Use a question-to-evidence arc:
- phenomenon and importance,
- unknown mechanism,
- hypothesis or question,
- experimental design,
- evidence chain,
- model,
- limitations and next experiments.
Methods, AI, tool, or algorithm papers
Use a problem-to-solution arc:
- current bottleneck,
- proposed method,
- workflow or architecture,
- evaluation design,
- performance compared with baselines,
- ablation, robustness, or failure cases,
- reuse scenarios and limitations.
Resource, dataset, atlas, omics, or benchmark papers
Use a workflow-to-validation arc:
- why the resource is needed,
- dataset/cohort/sample design,
- generation and quality control workflow,
- main landscape or map,
- validation and reproducibility,
- example biological or technical insights,
- access, reuse, and boundaries.
Clinical, population, or intervention studies
Use a design-to-inference arc:
- clinical/public-health problem,
- study question,
- cohort/trial/design,
- endpoints and variables,
- primary result,
- subgroup/sensitivity/secondary analyses,
- bias, limitations, and practical implication.
Materials, chemistry, physics, engineering papers
Use a property-to-mechanism or design-to-performance arc:
- target property or technical challenge,
- design principle,
- synthesis/fabrication/setup,
- characterization,
- performance evidence,
- mechanism or structure-property relationship,
- scalability, stability, or application boundary.
Reviews and perspectives
Use an evidence-map arc:
- why the topic matters now,
- conceptual framework,
- theme 1,
- theme 2,
- theme 3,
- controversy or unresolved problem,
- author's synthesis,
- future directions.
Style Rules
Use a restrained Nature-style academic presentation design:
- clean white or very light background,
- dark readable text,
- one or two muted accent colors,
- compact but not crowded layouts,
- figure-first result slides,
- concise captions,
- no decorative stock images,
- no decorative gradients,
- no exaggerated marketing-style section pages.
Use Chinese suitable for oral academic reporting:
- avoid rigid translation,
- avoid long paragraphs,
- avoid jargon stacking,
- preserve technical terms where Chinese translation would reduce precision,
- prefer evidence-based interpretation over vague praise.
Borrow Nature-style figure-page composition principles, but keep this skill self-contained and independent from any other skill. Treat each slide like a publication figure page: one dominant idea, one clear evidence hierarchy, and asymmetry when the story needs it.
Nature-style page composition
- Prefer one hero visual per slide when the evidence is complex or the claim is central.
- Use asymmetric layouts by default when the visual and the text are not equally important.
- Keep gutters real and tight. Use whitespace to separate roles, not to make a balanced grid.
- Use small panel labels (
a, b, c) when a slide contains multiple visual subpanels.
- Use direct labels or a shared legend strip when categories repeat across panels.
- Reuse one restrained palette across the slide or slide family; reserve green/red for gains, drops, or directional change.
- If a slide has a schematic and data, let one dominate and the other validate.
- Use dark backgrounds only when the dominant visual is an image plate or the source content benefits from it; keep normal chart slides light.
- Avoid decorative boxes, fake cards, and symmetrical two-column scaffolds unless the content truly calls for them.
- If a figure would become unreadable when scaled down, crop it, split it, or move it to its own slide.
Typography system
- Build a clear three-level hierarchy: title, body, caption/source. Do not let every text block look like the same font at slightly different sizes.
- Use one Chinese sans-serif family for most copy and one English/number companion font for metrics, abbreviations, model names, DOI, and small metadata.
- Prefer title sizes roughly in the 24-32 pt range, body copy in the 12-16 pt range, and source/caption text in the 7-9 pt range unless the template clearly calls for something else.
- Let titles carry more weight than bullets. Large metrics may stand out, but they must not overpower the slide title or the main figure.
- Keep captions and source labels lighter in color and smaller in size than the main argument text.
- Avoid mixing many font families on one slide. One Chinese family plus one English/numeric companion is the default maximum.
Figure-text coordination
- Do not let figures look pasted onto the page. Pair them with a clear shared field: a tight frame, a caption edge, an interpretation rail, or a short takeaway strip.
- When a slide has one dominant figure, let the figure own about 55-75% of the slide area and keep the explanatory text to a narrow rail or short band.
- Keep captions attached to the figure edge or inside a bottom caption band. Avoid detached caption text floating far from the visual.
- Use 1-3 metric callouts or a short interpretation strip to help read the figure; do not surround the figure with many equal-weight boxes.
- If the source figure is very dense, prefer a cropped hero panel plus one or two callouts over shrinking the entire figure and compensating with long bullets.
- Use text to guide the reading order and interpretation of the figure, not to repeat every panel label in prose.
Page fullness rule
- Slides should feel complete rather than empty. Most slides should have a stable top anchor, a dominant middle block, and a bottom anchor such as a takeaway strip, source strip, or conclusion line.
- Add fullness through evidence-supporting elements: metric chips, compact interpretation bands, short source strips, or a narrow comparison block.
- Avoid large unstructured blank areas caused by tiny figures, short bullets marooned in one corner, or captions that sit far from the visual.
- If a slide still feels sparse after placing the main claim and figure, add one concise support layer before adding more bullets.
- Do not fill space with decoration alone. Any added block should clarify hierarchy, guide reading order, or improve figure readability.
Slide archetype recipes
- Hero figure result slide: 60-75% visual area, 20-30% interpretation rail, and a short takeaway band.
- Workflow slide: one full-width or near-full-width process visual plus a compact annotation strip, not two equal columns of text and diagram.
- Comparison slide: one chart or table block plus a slim metric or conclusion rail; split into two slides if the table becomes cramped.
- Text-led synthesis slide: 2-4 strong bullets or 3 compact claim cards, plus one summary sentence or discussion strip at the bottom.
- Cover slide: one dominant visual or typographic block, a small metadata band, and no dashboard-like grid of equally weighted mini-elements.
Citation and Attribution Rules
Include source information:
- title slide: paper title, authors if useful, journal/preprint server, year, DOI if available,
- figure slides: small labels such as
Source: Fig. 2b, Nature, 2024,
- adapted or redrawn content: label as
整理自 or 改绘自,
- do not remove original figure labels or alter scientific data.
Output Files
Generate a minimal but complete output package by default.
1. output/final_presentation_cn.pptx
The main deliverable: a complete Chinese PPTX deck with figures, captions, takeaways, source labels, and speaker notes.
2. output/qa_report.md
A short quality report:
- PPTX creation status,
- slide count,
- figures inserted,
- missing or placeholder figures,
- verification method used,
- known limitations,
- manual follow-up if needed.
3. output/assets/figures/
Extracted or cropped figure assets used in the deck.
4. output/asset_manifest.md
Figure asset traceability file, generated only when external figure/table assets are extracted:
- asset filename,
- original figure / panel,
- source page or source file,
- extraction method,
- slide placement,
- quality notes.
If no external figure/table assets are extracted, omit asset_manifest.md or write a one-line note in qa_report.md instead.
Create these optional files only when useful for review, debugging, or user-requested traceability:
Optional: output/ppt_outline_cn.md
Chinese outline:
- paper information,
- paper type,
- central argument,
- slide structure,
- slide purpose.
Optional: output/figure_plan.md
Figure selection plan:
- figure / panel,
- what it shows,
- why it matters,
- recommended slide,
- Chinese caption,
- interpretation.
Optional: output/ppt_script_cn_with_figures.md
Slide-by-slide script:
## Slide X. [中文标题]
- Purpose:
- Layout:
- On-slide bullets:
- ...
- ...
- ...
- Figure/Table:
- Chinese caption:
- Core takeaway:
- Speaker note:
Optional: output/rendered/
Rendered slide previews only when a reliable headless renderer is available or the user requests visual QA.
Skip the optional outline/script/figure-plan files by default unless they materially reduce back-and-forth, help verify a complex paper, or are explicitly requested.
Quality Rules
- Build the
.pptx whenever tooling is available.
- Do not stop at a markdown outline or script.
- Do not fabricate results, methods, numbers, or figure details.
- Do not add expensive processing steps unless they improve the deck or were requested.
- Do not overload slides with text.
- Do not make result slides text-only when figures are available.
- Make every slide serve the paper's argument.
- Ensure figures are readable at presentation scale.
- Ensure text, captions, and figures do not overlap.
- Ensure font hierarchy is consistent across slides and that figures, captions, and metrics feel visually related rather than independently placed.
- Ensure the deck is not visually underfilled: empty regions should be intentional whitespace, not leftover template space from an undersized figure or text block.
- Document uncertainty and missing source material clearly.
Fallback Rules
If only partial content is available:
- still create a useful PPTX structure when possible,
- clearly mark uncertain slides or missing details,
- use placeholders only when a required figure is unavailable,
- do not invent exact values or claims,
- write
output/qa_report.md explaining what could not be verified.
If PPTX tooling is unavailable:
- generate a concise markdown outline and figure plan,
- prepare figure assets if possible,
- explain why the PPTX could not be built in the current environment,
- keep the outputs structured enough for a downstream PPTX builder to run without re-reading the paper.
1---2name: nature-paper2ppt3description: Build a complete but efficient Nature-style Chinese PPTX presentation from a scientific paper, preprint, PDF, article text, abstract, figure legends, or reading notes. Use this skill whenever the user asks to make slides/PPT/PPTX for journal club, group meeting, paper sharing, thesis seminar, lab meeting, department report, or academic presentation from a research paper, not only medical papers. It identifies the paper type and argument, selects only the figures needed for the story, writes Chinese slide content and speaker notes, creates the actual .pptx deck, and performs lightweight verification with cross-platform Python tooling by default.4---56# Purpose7Transform a scientific paper or paper-derived notes into a complete Chinese, figure-integrated PPTX presentation package with a Nature-style reporting logic.89The skill must not stop at an outline or script. The expected end product is a real `.pptx` deck. Keep supporting files minimal unless the user asks for more traceability.1011Use this skill for papers across scientific fields, including:12- life sciences and medicine13- chemistry and materials science14- environmental and earth sciences15- physics and engineering16- computational biology, AI, and methods papers17- interdisciplinary Nature-family style research18- reviews, perspectives, resources, datasets, and benchmark papers1920# Core Principle21Use the paper's scientific argument as the presentation spine.2223The default slide logic should help the audience answer, in order:241. Why does this problem matter?252. What gap or bottleneck does the paper address?263. What did the authors do?274. What is the key evidence?285. Why should we trust the result?296. What is new, reusable, or broadly meaningful?307. Where are the boundaries and open questions?3132This is more important than copying the paper section order.3334# Lean Operating Mode35Default to the lowest-overhead workflow that still produces a usable PPTX.3637Do:38- read only the source material needed to understand the paper's argument,39- extract only figures/tables that will actually appear in the deck,40- create the PPTX as the primary deliverable,41- run lightweight structural checks on the PPTX package,42- write a short QA report.4344Avoid by default:45- exhaustive extraction of every figure, page, image, table, or supplement,46- full OCR unless normal text extraction fails or the PDF is scanned,47- saving full raw extracted paper text unless it is needed for debugging or reuse,48- installing new dependencies when an existing tool can complete the task,49- launching GUI apps or desktop automation just to render previews,50- generating long markdown scripts when the user only needs a deck,51- rendering every slide when no reliable headless renderer is available.5253## Toolchain Policy54Use a cross-platform Python-first stack unless the user explicitly asks for something else:55- PyMuPDF for metadata, text extraction, page rendering, and page-level crops,56- Pillow for figure crops, contact sheets, and lightweight preview images,57- python-pptx for slide authoring and PPTX-safe editing,58- zipfile plus a reopen pass through python-pptx for package validation.5960This stack must work on macOS, Linux, and Windows. Use `pathlib` paths, project-local output directories, and Office-safe fonts or theme fonts. Do not hardcode OS font paths or platform-specific file locations. If Python packages are missing, create a local virtual environment and install the minimum packages only when policy permits; do not install broad document suites just to finish a normal deck.6162Treat LibreOffice/soffice as optional, only when it is already available and a real rendered preview is worth the cost. Avoid Keynote, PowerPoint desktop automation, AppleScript, Preview, Finder, `open`, and any OS-specific font or path dependency in helper scripts. If a preview can be made from extracted slide objects or assets, prefer that over re-rendering the whole deck.6364Ask or document the tradeoff before doing expensive extras such as full supplementary-material processing, high-resolution recreation of many figures, full slide-by-slide rendered QA, or very long decks.6566# Accepted Inputs67The skill may receive:68- a full paper PDF69- supplementary figures or tables70- Word or markdown converted paper text71- abstract + results + figure legends72- structured reading notes73- manually pasted article content74- an `input/source.md` file75- a user-provided PPTX template7677Default output language is simplified Chinese unless the user requests otherwise. Preserve important technical terms, abbreviations, gene/protein names, model names, dataset names, equations, and statistical terms in English when needed.7879# Default Fast Path80For a normal selectable-text paper PDF, run the shortest complete path:811. Extract metadata, abstract, headings, figure legends, and table captions with PyMuPDF.822. Identify the paper type, argument, and candidate figures before rendering high-resolution pages.833. Render low-resolution contact sheets only when figure locations are unclear.844. Render high-resolution images only for selected figure/table pages and crop only assets that will appear in the deck.855. Build the PPTX directly with python-pptx, using native tables/charts when values are explicit and figure crops when the original visual carries the evidence.866. Verify by reopening the PPTX and inspecting package structure; render slide previews only if a reliable cross-platform headless renderer is already available.8788OCR, full supplementary extraction, all-page high-resolution rendering, all-slide rendered QA, and long script files are opt-in or justified exceptions, not defaults.8990# Workflow9192## Step 1. Read and extract source material93Extract, when available:94- title, authors, journal/preprint server, year, DOI95- field and subfield96- paper type97- central problem and knowledge gap98- main claim or thesis99- study design, workflow, model, dataset, or experimental system100- key methods and controls101- main results and quantitative findings102- key figures, tables, and figure legends103- validation, robustness, ablation, or sensitivity analyses104- limitations and unresolved questions105- broader scientific, clinical, technical, environmental, or translational meaning106107Do not invent missing numbers, mechanisms, datasets, or figure details.108Use a two-pass reading strategy: first capture metadata, abstract, headings, figure legends, and table captions; then read only the result and methods pages needed to support the slides.109110## Step 2. Classify the paper before designing slides111Identify the primary paper type. Choose the closest fit:112- discovery / mechanism paper113- translational or applied science paper114- clinical or population study115- methods / algorithm / tool paper116- resource / dataset / atlas paper117- omics, single-cell, spatial, or multi-modal study118- materials / chemistry / engineering performance study119- environmental, ecological, or earth-system study120- benchmark / evaluation paper121- review / perspective / commentary122- meta-analysis / systematic review123124Then identify the best presentation logic:125- `claim-first`: useful when the paper has one strong central claim126- `question-to-evidence`: useful for mechanism and discovery papers127- `problem-to-solution`: useful for methods, tools, and engineering papers128- `workflow-to-validation`: useful for datasets, atlases, omics, and benchmarks129- `evidence-map`: useful for reviews and perspectives130131## Step 3. Build the Chinese presentation plan132Default length: 12-16 slides for a 15-20 minute report.133134The default structure is:1351. 标题页1362. 研究背景:为什么这个问题重要1373. 知识缺口 / 技术瓶颈1384. 论文核心问题与主张1395. 研究设计 / 技术路线 / 分析框架1406. 关键证据11417. 关键证据21428. 关键证据31439. 验证、对照或稳健性证据14410. 机制模型 / 方法优势 / 综合框架14511. 创新点与可复用价值14612. 局限性与未解决问题14713. 总结与讨论148149Adapt this structure to the paper type. Do not force every paper into the same template.150151For a quick or unspecified request, prefer 10-14 slides. Expand beyond 16 slides only when the user asks for a detailed seminar deck or the paper genuinely needs the extra space to stay readable.152153## Step 4. Select figures as evidence, not decoration154Inspect the source for:155- graphical abstracts or summary models156- study design and workflow diagrams157- central result figures158- microscopy or imaging panels159- heatmaps, dimensionality reduction, networks, maps, or spatial plots160- survival curves, forest plots, calibration curves, or statistical result plots161- materials characterization and performance plots162- model architecture, benchmark, ablation, or error analysis figures163- key tables164- validation or control figures165166Prioritize figures that carry the paper's argument:1671. design/workflow,1682. main evidence,1693. validation or robustness,1704. mechanism/model/synthesis,1715. practical or conceptual implication.172173Prefer a few readable key panels over many unreadable full figures.174175## Step 5. Extract and prepare figure assets176When the source contains usable figures:177- extract original images from the PDF or source package when possible, but only for selected figures,178- render high-resolution page images only for pages containing selected figures or tables,179- crop relevant panels when full figures are too dense,180- keep original data visuals unchanged,181- save images under `output/assets/figures/`,182- use clear filenames such as `fig1_workflow.png`, `fig2b_main_result.png`, or `fig4ef_validation.png`,183- record source page, figure number, panel, crop status, and intended slide in `output/asset_manifest.md`.184185For a standard 10-14 slide journal-club deck, usually select 4-8 figure/table assets. Add more only when they directly support distinct evidence slides.186187For tables and simple quantitative comparisons, prefer editable PPT-native tables/charts when values are explicit in the paper text or table. Use table screenshots only when recreating the table would risk transcription errors or when layout/formatting itself is the evidence.188189If extraction fails, use the best available fallback:190- rendered page screenshot with careful crop,191- recreated editable table only when values are explicitly available,192- clearly labeled placeholder only when the visual is unavailable.193194## Step 6. Write slide-by-slide content195For each slide, write:196- Chinese title197- slide purpose198- suggested layout199- 3-4 concise Chinese bullets200- selected figure or table asset, if any201- Chinese figure caption and interpretation202- one core takeaway sentence203- Chinese speaker note when oral explanation is useful204205Each slide should make one point. Result slides should answer:206- What does this figure show?207- Why does it matter for the paper's claim?208- What should the audience believe after seeing it?209210Speaker notes should be useful but concise. Do not write long narration for every slide when the slide content is self-explanatory.211212### Evidence hierarchy on a slide213For any result slide, order the visual logic like this:2141. hero figure or main table crop,2152. narrow interpretation rail or short annotation band,2163. only the minimum labels needed to read the evidence,2174. any deeper explanation moves to speaker notes or the next slide.218219Do not let the interpretation block become as large or louder than the evidence itself.220221### Layout adaptation rule222Do not default to a fixed 50/50 left-right split.223Choose the layout from the figure's aspect ratio, density, and role in the argument:224- use a full-width or near-full-width visual when the figure is wide, complex, or the slide's main evidence,225- use a tall image with a narrow text rail when the figure is vertically oriented or the caption/interpretation is short,226- use a top/bottom stack when the figure needs more horizontal room or the slide benefits from a short argument above and a visual below,227- use an asymmetric split such as 70/30, 75/25, or 65/35 when one side clearly dominates,228- use a compact visual-plus-callout layout when the slide only needs a few annotations,229- use a table or figure crop instead of shrinking a dense graphic into a small frame.230231Treat equal-weight 1:1 layouts as the exception, not the default. Use them only when the text and image truly carry comparable weight and neither needs dominance. In most result slides, one side should clearly dominate.232233Prefer the smallest text block that still makes the claim legible. If the visual needs space, give it space; if the text is the main point, let the slide breathe and keep the figure smaller or move it to its own slide.234235For dense figures or tables, crop to the most relevant panels and avoid squeezing them into equal columns. For sparse slides, do not pad the page with extra boxes just to fill space.236237### Slide archetype defaults238Use these defaults unless the source strongly suggests otherwise:239- Cover slide: one dominant visual or typographic idea, no balanced split, no dashboard-like grid.240- Background/problem slide: short setup text plus one compact context visual or schematic.241- Workflow/method slide: full-width or top-to-bottom process diagram, not two equal text/figure columns.242- Result/evidence slide: one dominant figure or table crop with a narrow interpretation rail; avoid 1:1 layouts unless the evidence and explanation truly balance.243- Comparison/table slide: full-width table or split table across slides if it becomes cramped.244- Model/summary slide: a large central model with a brief takeaway strip or short annotation band.245- Conclusion/discussion slide: text-led but open composition, with 2-4 bullets and no unnecessary containers.246247### Title writing rule248Use conclusion-style titles whenever possible. A good title states the slide's point, not just its topic. Prefer sentences like “PathAgent 主动识别信息不足并补充证据” over labels like “Case Study” or “Figure 3”.249250### Visual density rule251Do not downscale a dense figure, table, or multi-panel graphic into a tiny slot just to preserve symmetry. If a visual cannot be read at presentation scale, crop it, split it, or give it its own slide. Prefer one legible visual over several cramped ones.252253## Step 7. Build the actual PPTX deck254Create a real `.pptx` file as the primary deliverable.255256Use `python-pptx` as the default authoring tool for scientific paper decks because it creates editable PPTX files and runs on macOS, Linux, and Windows. Use a user-provided PPTX template if supplied. Use the local Presentations plugin or other PPTX tooling only when it is already available and clearly reduces work without violating the cross-platform policy.257258Use tools already available in the environment first. Install only the minimum Python dependencies when the PPTX cannot otherwise be created and the environment policy permits it.259260The PPTX should:261- use 16:9 widescreen layout by default,262- include the selected original figures,263- use Chinese titles, bullets, captions, and speaker notes,264- include source labels for figure slides,265- keep slide text concise and readable,266- avoid text-only result slides when visuals are available,267- maintain consistent typography, spacing, titles, captions, and section transitions.268269Use compact, evidence-first page composition. Avoid making every result slide a rigid two-column template or any balanced 1:1 scaffold. Let slide geometry follow the figure rather than forcing the figure to fit a template.270271When a slide has one dominant figure, let that figure own the page. Keep the annotation rail narrow and short, and move secondary explanation into speaker notes or a follow-up slide rather than expanding the slide horizontally into a symmetrical split.272273## Step 8. Render, inspect, and revise274After creating the PPTX, render previews only when a reliable headless renderer is readily available.275276If rendered previews are available, inspect them for:277- missing images,278- distorted or low-resolution figures,279- unreadable panels,280- text overflow,281- overlapping captions, bullets, and figures,282- excessive bullet density,283- wrong slide order,284- missing source labels,285- missing or unhelpful speaker notes.286287If no reliable renderer is available, perform lightweight verification instead:288- reopen the PPTX with the generation library when possible,289- check slide count,290- check embedded media count,291- check speaker notes presence when notes were planned,292- check obvious shape bounds if tooling supports it,293- create a contact sheet from selected extracted assets only if helpful, not a full-deck screenshot set.294295Revise obvious defects. Document any remaining limitation in `output/qa_report.md`.296297# Paper-Type Guidance298299## Discovery / mechanism papers300Use a question-to-evidence arc:3011. phenomenon and importance,3022. unknown mechanism,3033. hypothesis or question,3044. experimental design,3055. evidence chain,3066. model,3077. limitations and next experiments.308309## Methods, AI, tool, or algorithm papers310Use a problem-to-solution arc:3111. current bottleneck,3122. proposed method,3133. workflow or architecture,3144. evaluation design,3155. performance compared with baselines,3166. ablation, robustness, or failure cases,3177. reuse scenarios and limitations.318319## Resource, dataset, atlas, omics, or benchmark papers320Use a workflow-to-validation arc:3211. why the resource is needed,3222. dataset/cohort/sample design,3233. generation and quality control workflow,3244. main landscape or map,3255. validation and reproducibility,3266. example biological or technical insights,3277. access, reuse, and boundaries.328329## Clinical, population, or intervention studies330Use a design-to-inference arc:3311. clinical/public-health problem,3322. study question,3333. cohort/trial/design,3344. endpoints and variables,3355. primary result,3366. subgroup/sensitivity/secondary analyses,3377. bias, limitations, and practical implication.338339## Materials, chemistry, physics, engineering papers340Use a property-to-mechanism or design-to-performance arc:3411. target property or technical challenge,3422. design principle,3433. synthesis/fabrication/setup,3444. characterization,3455. performance evidence,3466. mechanism or structure-property relationship,3477. scalability, stability, or application boundary.348349## Reviews and perspectives350Use an evidence-map arc:3511. why the topic matters now,3522. conceptual framework,3533. theme 1,3544. theme 2,3555. theme 3,3566. controversy or unresolved problem,3577. author's synthesis,3588. future directions.359360# Style Rules361Use a restrained Nature-style academic presentation design:362- clean white or very light background,363- dark readable text,364- one or two muted accent colors,365- compact but not crowded layouts,366- figure-first result slides,367- concise captions,368- no decorative stock images,369- no decorative gradients,370- no exaggerated marketing-style section pages.371372Use Chinese suitable for oral academic reporting:373- avoid rigid translation,374- avoid long paragraphs,375- avoid jargon stacking,376- preserve technical terms where Chinese translation would reduce precision,377- prefer evidence-based interpretation over vague praise.378379Borrow Nature-style figure-page composition principles, but keep this skill self-contained and independent from any other skill. Treat each slide like a publication figure page: one dominant idea, one clear evidence hierarchy, and asymmetry when the story needs it.380381### Nature-style page composition382- Prefer one hero visual per slide when the evidence is complex or the claim is central.383- Use asymmetric layouts by default when the visual and the text are not equally important.384- Keep gutters real and tight. Use whitespace to separate roles, not to make a balanced grid.385- Use small panel labels (`a`, `b`, `c`) when a slide contains multiple visual subpanels.386- Use direct labels or a shared legend strip when categories repeat across panels.387- Reuse one restrained palette across the slide or slide family; reserve green/red for gains, drops, or directional change.388- If a slide has a schematic and data, let one dominate and the other validate.389- Use dark backgrounds only when the dominant visual is an image plate or the source content benefits from it; keep normal chart slides light.390- Avoid decorative boxes, fake cards, and symmetrical two-column scaffolds unless the content truly calls for them.391- If a figure would become unreadable when scaled down, crop it, split it, or move it to its own slide.392393### Typography system394- Build a clear three-level hierarchy: title, body, caption/source. Do not let every text block look like the same font at slightly different sizes.395- Use one Chinese sans-serif family for most copy and one English/number companion font for metrics, abbreviations, model names, DOI, and small metadata.396- Prefer title sizes roughly in the 24-32 pt range, body copy in the 12-16 pt range, and source/caption text in the 7-9 pt range unless the template clearly calls for something else.397- Let titles carry more weight than bullets. Large metrics may stand out, but they must not overpower the slide title or the main figure.398- Keep captions and source labels lighter in color and smaller in size than the main argument text.399- Avoid mixing many font families on one slide. One Chinese family plus one English/numeric companion is the default maximum.400401### Figure-text coordination402- Do not let figures look pasted onto the page. Pair them with a clear shared field: a tight frame, a caption edge, an interpretation rail, or a short takeaway strip.403- When a slide has one dominant figure, let the figure own about 55-75% of the slide area and keep the explanatory text to a narrow rail or short band.404- Keep captions attached to the figure edge or inside a bottom caption band. Avoid detached caption text floating far from the visual.405- Use 1-3 metric callouts or a short interpretation strip to help read the figure; do not surround the figure with many equal-weight boxes.406- If the source figure is very dense, prefer a cropped hero panel plus one or two callouts over shrinking the entire figure and compensating with long bullets.407- Use text to guide the reading order and interpretation of the figure, not to repeat every panel label in prose.408409### Page fullness rule410- Slides should feel complete rather than empty. Most slides should have a stable top anchor, a dominant middle block, and a bottom anchor such as a takeaway strip, source strip, or conclusion line.411- Add fullness through evidence-supporting elements: metric chips, compact interpretation bands, short source strips, or a narrow comparison block.412- Avoid large unstructured blank areas caused by tiny figures, short bullets marooned in one corner, or captions that sit far from the visual.413- If a slide still feels sparse after placing the main claim and figure, add one concise support layer before adding more bullets.414- Do not fill space with decoration alone. Any added block should clarify hierarchy, guide reading order, or improve figure readability.415416### Slide archetype recipes417- Hero figure result slide: 60-75% visual area, 20-30% interpretation rail, and a short takeaway band.418- Workflow slide: one full-width or near-full-width process visual plus a compact annotation strip, not two equal columns of text and diagram.419- Comparison slide: one chart or table block plus a slim metric or conclusion rail; split into two slides if the table becomes cramped.420- Text-led synthesis slide: 2-4 strong bullets or 3 compact claim cards, plus one summary sentence or discussion strip at the bottom.421- Cover slide: one dominant visual or typographic block, a small metadata band, and no dashboard-like grid of equally weighted mini-elements.422423# Citation and Attribution Rules424Include source information:425- title slide: paper title, authors if useful, journal/preprint server, year, DOI if available,426- figure slides: small labels such as `Source: Fig. 2b, Nature, 2024`,427- adapted or redrawn content: label as `整理自` or `改绘自`,428- do not remove original figure labels or alter scientific data.429430# Output Files431Generate a minimal but complete output package by default.432433## 1. `output/final_presentation_cn.pptx`434The main deliverable: a complete Chinese PPTX deck with figures, captions, takeaways, source labels, and speaker notes.435436## 2. `output/qa_report.md`437A short quality report:438- PPTX creation status,439- slide count,440- figures inserted,441- missing or placeholder figures,442- verification method used,443- known limitations,444- manual follow-up if needed.445446## 3. `output/assets/figures/`447Extracted or cropped figure assets used in the deck.448449## 4. `output/asset_manifest.md`450Figure asset traceability file, generated only when external figure/table assets are extracted:451- asset filename,452- original figure / panel,453- source page or source file,454- extraction method,455- slide placement,456- quality notes.457458If no external figure/table assets are extracted, omit `asset_manifest.md` or write a one-line note in `qa_report.md` instead.459460Create these optional files only when useful for review, debugging, or user-requested traceability:461462## Optional: `output/ppt_outline_cn.md`463Chinese outline:464- paper information,465- paper type,466- central argument,467- slide structure,468- slide purpose.469470## Optional: `output/figure_plan.md`471Figure selection plan:472- figure / panel,473- what it shows,474- why it matters,475- recommended slide,476- Chinese caption,477- interpretation.478479## Optional: `output/ppt_script_cn_with_figures.md`480Slide-by-slide script:481482```markdown483## Slide X. [中文标题]484- Purpose:485- Layout:486- On-slide bullets:487 - ...488 - ...489 - ...490- Figure/Table:491- Chinese caption:492- Core takeaway:493- Speaker note:494```495496## Optional: `output/rendered/`497Rendered slide previews only when a reliable headless renderer is available or the user requests visual QA.498499Skip the optional outline/script/figure-plan files by default unless they materially reduce back-and-forth, help verify a complex paper, or are explicitly requested.500501# Quality Rules502- Build the `.pptx` whenever tooling is available.503- Do not stop at a markdown outline or script.504- Do not fabricate results, methods, numbers, or figure details.505- Do not add expensive processing steps unless they improve the deck or were requested.506- Do not overload slides with text.507- Do not make result slides text-only when figures are available.508- Make every slide serve the paper's argument.509- Ensure figures are readable at presentation scale.510- Ensure text, captions, and figures do not overlap.511- Ensure font hierarchy is consistent across slides and that figures, captions, and metrics feel visually related rather than independently placed.512- Ensure the deck is not visually underfilled: empty regions should be intentional whitespace, not leftover template space from an undersized figure or text block.513- Document uncertainty and missing source material clearly.514515# Fallback Rules516If only partial content is available:517- still create a useful PPTX structure when possible,518- clearly mark uncertain slides or missing details,519- use placeholders only when a required figure is unavailable,520- do not invent exact values or claims,521- write `output/qa_report.md` explaining what could not be verified.522523If PPTX tooling is unavailable:524- generate a concise markdown outline and figure plan,525- prepare figure assets if possible,526- explain why the PPTX could not be built in the current environment,527- keep the outputs structured enough for a downstream PPTX builder to run without re-reading the paper.