文献综述科研写作与发表K-Dense-AI/claude-scientific-skills文献综述
PD

pdf

维护者 K-Dense Inc. · 最近更新 2026年4月1日

pdf:This guide covers essential PDF processing operations ,使用 Python libraries 、 command-line tools。 用于 advanced features,JavaScript libraries,、 detailed examples,see REFERENCE.md。

Claude CodeOpenClawNanoClaw选题发现精读整理pdfdocument-processingworkflowdocument processing & conversion

原始来源

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/pdf

维护者
K-Dense Inc.
许可
Proprietary. LICENSE.txt has complete terms
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • This guide covers essential PDF processing operations ,使用 Python libraries 、 command-line tools. ,用于 advanced features,JavaScript libraries,、 detailed examples,see REFERENCE.md. If you need to fill out PDF form,read FORMS.md 、 follow its instructions。
  • reader = PdfReader("document.pdf") print(f"Pages:{len(reader.pages)}")。

原始文档

SKILL.md 摘录

Quick Start

from pypdf import PdfReader, PdfWriter

## Extract text

text = ""
for page in reader.pages:
    text += page.extract_text()

Advanced Table Extraction

import pandas as pd

with pdfplumber.open("document.pdf") as pdf:
    all_tables = []
    for page in pdf.pages:
        tables = page.extract_tables()
        for table in tables:
            if table:  # Check if table is not empty
                df = pd.DataFrame(table[1:], columns=table[0])
                all_tables.append(df)

适用场景

  • Use pdf ,用于 manuscript drafting 、 submission workflows。
  • Apply pdf when polishing research communication outputs。

不适用场景

  • Do not treat this catalog entry as substitute ,用于 full upstream workflow。

相关技能

相关技能

返回目录
BI
文献综述科研写作与发表

bio-machine-learning-atlas-mapping

bio-machine-learning-atlas-mapping:映射 query cells to reference atlases ,支持 scANVI 或 Symphony。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bio-read-alignment-bwa-alignment

bio-read-alignment-bwa-alignment:Align short reads to reference genome ,支持 BWA-MEM。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bio-reference-operations

bio-reference-operations:Download,index,、 manage reference genome FASTA files。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bioRxiv

bioRxiv:This skill provides efficient Python-based tools ,用于 searching 、 retrieving preprints ,面向 bioRxiv database。 It e…

Claude CodeOpenClaw选题发现
K-Dense-AI/claude-scientific-skills查看