docx
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDOCX creation, editing, and analysis
DOCX 创建、编辑与分析
Overview
概述
A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.
用户可能会要求你创建、编辑或分析.docx文件的内容。.docx文件本质上是一个包含XML文件和其他资源的ZIP压缩包,你可以读取或编辑这些内容。针对不同的任务,你可以使用不同的工具和工作流程。
Workflow Decision Tree
工作流决策树
Reading/Analyzing Content
读取/分析内容
Use "Text extraction" or "Raw XML access" sections below
使用下方的「文本提取」或「原始XML访问」部分
Creating New Document
创建新文档
Use "Creating a new Word document" workflow
使用「创建新Word文档」工作流
Editing Existing Document
编辑现有文档
-
Your own document + simple changes Use "Basic OOXML editing" workflow
-
Someone else's document Use "Redlining workflow" (recommended default)
-
Legal, academic, business, or government docs Use "Redlining workflow" (required)
-
你自己的文档 + 简单修改 使用「基础OOXML编辑」工作流
-
他人的文档 使用**「红线批注工作流」**(默认推荐)
-
法律、学术、商业或政府文档 使用**「红线批注工作流」**(强制要求)
Reading and analyzing content
读取与分析内容
Text extraction
文本提取
If you just need to read the text contents of a document, you should convert the document to markdown using pandoc. Pandoc provides excellent support for preserving document structure and can show tracked changes:
bash
undefined如果你只需要读取文档的文本内容,应该使用pandoc将文档转换为markdown格式。Pandoc对保留文档结构提供了出色的支持,还可以显示追踪的修改:
bash
undefinedConvert document to markdown with tracked changes
Convert document to markdown with tracked changes
pandoc --track-changes=all path-to-file.docx -o output.md
pandoc --track-changes=all path-to-file.docx -o output.md
Options: --track-changes=accept/reject/all
Options: --track-changes=accept/reject/all
undefinedundefinedRaw XML access
原始XML访问
You need raw XML access for: comments, complex formatting, document structure, embedded media, and metadata. For any of these features, you'll need to unpack a document and read its raw XML contents.
以下场景需要使用原始XML访问:评论、复杂格式、文档结构、嵌入媒体和元数据。要使用这些功能,你需要解压文档并读取其原始XML内容。
Unpacking a file
解压文件
python ooxml/scripts/unpack.py <office_file> <output_directory>python ooxml/scripts/unpack.py <office_file> <output_directory>Key file structures
关键文件结构
- - Main document contents
word/document.xml - - Comments referenced in document.xml
word/comments.xml - - Embedded images and media files
word/media/ - Tracked changes use (insertions) and
<w:ins>(deletions) tags<w:del>
- - 主文档内容
word/document.xml - - document.xml中引用的评论
word/comments.xml - - 嵌入的图片和媒体文件
word/media/ - 追踪修改使用(插入)和
<w:ins>(删除)标签<w:del>
Creating a new Word document
创建新Word文档
When creating a new Word document from scratch, use docx-js, which allows you to create Word documents using JavaScript/TypeScript.
从零开始创建新Word文档时,请使用docx-js,它允许你使用JavaScript/TypeScript创建Word文档。
Workflow
工作流
- MANDATORY - READ ENTIRE FILE: Read (~500 lines) completely from start to finish. NEVER set any range limits when reading this file. Read the full file content for detailed syntax, critical formatting rules, and best practices before proceeding with document creation.
docx-js.md - Create a JavaScript/TypeScript file using Document, Paragraph, TextRun components (You can assume all dependencies are installed, but if not, refer to the dependencies section below)
- Export as .docx using Packer.toBuffer()
- 强制要求 - 阅读完整文件:从头到尾完整阅读(约500行)。阅读此文件时请勿设置任何范围限制。 在开始创建文档前,请阅读完整文件内容以了解详细语法、关键格式规则和最佳实践。
docx-js.md - 使用Document、Paragraph、TextRun组件创建JavaScript/TypeScript文件(你可以假设所有依赖都已安装,如果没有,请参考下面的依赖部分)
- 使用Packer.toBuffer()导出为.docx格式
Editing an existing Word document
编辑现有Word文档
When editing an existing Word document, use the Document library (a Python library for OOXML manipulation). The library automatically handles infrastructure setup and provides methods for document manipulation. For complex scenarios, you can access the underlying DOM directly through the library.
编辑现有Word文档时,请使用Document库(一个用于OOXML操作的Python库)。该库会自动处理基础设置,并提供文档操作方法。对于复杂场景,你可以通过该库直接访问底层DOM。
Workflow
工作流
- MANDATORY - READ ENTIRE FILE: Read (~600 lines) completely from start to finish. NEVER set any range limits when reading this file. Read the full file content for the Document library API and XML patterns for directly editing document files.
ooxml.md - Unpack the document:
python ooxml/scripts/unpack.py <office_file> <output_directory> - Create and run a Python script using the Document library (see "Document Library" section in ooxml.md)
- Pack the final document:
python ooxml/scripts/pack.py <input_directory> <office_file>
The Document library provides both high-level methods for common operations and direct DOM access for complex scenarios.
- 强制要求 - 阅读完整文件:从头到尾完整阅读(约600行)。阅读此文件时请勿设置任何范围限制。 阅读完整文件内容以了解Document库API和直接编辑文档文件的XML模式。
ooxml.md - 解压文档:
python ooxml/scripts/unpack.py <office_file> <output_directory> - 使用Document库创建并运行Python脚本(参考ooxml.md中的「Document库」部分)
- 打包最终文档:
python ooxml/scripts/pack.py <input_directory> <office_file>
Document库既提供了用于常见操作的高阶方法,也支持直接访问DOM以应对复杂场景。
Redlining workflow for document review
文档审核的红线批注工作流
This workflow allows you to plan comprehensive tracked changes using markdown before implementing them in OOXML. CRITICAL: For complete tracked changes, you must implement ALL changes systematically.
Batching Strategy: Group related changes into batches of 3-10 changes. This makes debugging manageable while maintaining efficiency. Test each batch before moving to the next.
Principle: Minimal, Precise Edits
When implementing tracked changes, only mark text that actually changes. Repeating unchanged text makes edits harder to review and appears unprofessional. Break replacements into: [unchanged text] + [deletion] + [insertion] + [unchanged text]. Preserve the original run's RSID for unchanged text by extracting the element from the original and reusing it.
<w:r>Example - Changing "30 days" to "60 days" in a sentence:
python
undefined该工作流允许你在OOXML中实现修改前,先使用markdown规划完整的追踪修改。关键提示:要实现完整的修改追踪,你必须系统地执行所有修改。
分批策略:将相关修改分为3-10个修改的批次。这既便于调试,又能保持效率。每个批次测试通过后再进行下一批。
原则:最小化、精准编辑
实现追踪修改时,仅标记实际发生变更的文本。重复未修改的文本会增加审核难度,也显得不专业。将替换内容拆分为:[未修改文本] + [删除] + [插入] + [未修改文本]。通过提取原始元素并复用,保留未修改文本的原始运行RSID。
<w:r>示例 - 将句子中的「30 days」改为「60 days」:
python
undefinedBAD - Replaces entire sentence
BAD - Replaces entire sentence
'<w:del><w:r><w:delText>The term is 30 days.</w:delText></w:r></w:del><w:ins><w:r><w:t>The term is 60 days.</w:t></w:r></w:ins>'
'<w:del><w:r><w:delText>The term is 30 days.</w:delText></w:r></w:del><w:ins><w:r><w:t>The term is 60 days.</w:t></w:r></w:ins>'
GOOD - Only marks what changed, preserves original <w:r> for unchanged text
GOOD - Only marks what changed, preserves original <w:r> for unchanged text
'<w:r w:rsidR="00AB12CD"><w:t>The term is </w:t></w:r><w:del><w:r><w:delText>30</w:delText></w:r></w:del><w:ins><w:r><w:t>60</w:t></w:r></w:ins><w:r w:rsidR="00AB12CD"><w:t> days.</w:t></w:r>'
undefined'<w:r w:rsidR="00AB12CD"><w:t>The term is </w:t></w:r><w:del><w:r><w:delText>30</w:delText></w:r></w:del><w:ins><w:r><w:t>60</w:t></w:r></w:ins><w:r w:rsidR="00AB12CD"><w:t> days.</w:t></w:r>'
undefinedTracked changes workflow
修改追踪工作流
-
Get markdown representation: Convert document to markdown with tracked changes preserved:bash
pandoc --track-changes=all path-to-file.docx -o current.md -
Identify and group changes: Review the document and identify ALL changes needed, organizing them into logical batches:Location methods (for finding changes in XML):
- Section/heading numbers (e.g., "Section 3.2", "Article IV")
- Paragraph identifiers if numbered
- Grep patterns with unique surrounding text
- Document structure (e.g., "first paragraph", "signature block")
- DO NOT use markdown line numbers - they don't map to XML structure
Batch organization (group 3-10 related changes per batch):- By section: "Batch 1: Section 2 amendments", "Batch 2: Section 5 updates"
- By type: "Batch 1: Date corrections", "Batch 2: Party name changes"
- By complexity: Start with simple text replacements, then tackle complex structural changes
- Sequential: "Batch 1: Pages 1-3", "Batch 2: Pages 4-6"
-
Read documentation and unpack:
- MANDATORY - READ ENTIRE FILE: Read (~600 lines) completely from start to finish. NEVER set any range limits when reading this file. Pay special attention to the "Document Library" and "Tracked Change Patterns" sections.
ooxml.md - Unpack the document:
python ooxml/scripts/unpack.py <file.docx> <dir> - Note the suggested RSID: The unpack script will suggest an RSID to use for your tracked changes. Copy this RSID for use in step 4b.
- MANDATORY - READ ENTIRE FILE: Read
-
Implement changes in batches: Group changes logically (by section, by type, or by proximity) and implement them together in a single script. This approach:
- Makes debugging easier (smaller batch = easier to isolate errors)
- Allows incremental progress
- Maintains efficiency (batch size of 3-10 changes works well)
Suggested batch groupings:- By document section (e.g., "Section 3 changes", "Definitions", "Termination clause")
- By change type (e.g., "Date changes", "Party name updates", "Legal term replacements")
- By proximity (e.g., "Changes on pages 1-3", "Changes in first half of document")
For each batch of related changes:a. Map text to XML: Grep for text into verify how text is split acrossword/document.xmlelements.<w:r>b. Create and run script: Useto find nodes, implement changes, thenget_node. See "Document Library" section in ooxml.md for patterns.doc.save()Note: Always grepimmediately before writing a script to get current line numbers and verify text content. Line numbers change after each script run.word/document.xml -
Pack the document: After all batches are complete, convert the unpacked directory back to .docx:bash
python ooxml/scripts/pack.py unpacked reviewed-document.docx -
Final verification: Do a comprehensive check of the complete document:
- Convert final document to markdown:
bash
pandoc --track-changes=all reviewed-document.docx -o verification.md - Verify ALL changes were applied correctly:
bash
grep "original phrase" verification.md # Should NOT find it grep "replacement phrase" verification.md # Should find it - Check that no unintended changes were introduced
- Convert final document to markdown:
-
获取markdown表示:转换文档为保留修改追踪的markdown格式:bash
pandoc --track-changes=all path-to-file.docx -o current.md -
识别并分组修改:审核文档,识别所有需要的修改,将它们整理为逻辑批次:定位方法(用于在XML中查找修改位置):
- 章节/标题编号(例如「3.2节」、「第四条」)
- 段落编号(如果有编号)
- 带唯一上下文文本的grep模式
- 文档结构(例如「第一段」、「签名块」)
- 请勿使用markdown行号 - 它们与XML结构不对应
批次组织(每个批次分组3-10个相关修改):- 按章节:「批次1:第2节修订」、「批次2:第5节更新」
- 按类型:「批次1:日期更正」、「批次2:参与方名称修改」
- 按复杂度:从简单的文本替换开始,再处理复杂的结构修改
- 按顺序:「批次1:第1-3页」、「批次2:第4-6页」
-
阅读文档并解压:
- 强制要求 - 阅读完整文件:从头到尾完整阅读(约600行)。阅读此文件时请勿设置任何范围限制。 请特别注意「Document库」和「修改追踪模式」部分。
ooxml.md - 解压文档:
python ooxml/scripts/unpack.py <file.docx> <dir> - 记录建议的RSID:解压脚本会为你的修改追踪建议一个RSID。复制此RSID用于步骤4b。
- 强制要求 - 阅读完整文件:从头到尾完整阅读
-
分批实现修改:逻辑分组修改(按章节、按类型或按位置),在单个脚本中一起实现。这种方式:
- 更便于调试(批次越小,越容易定位错误)
- 支持增量进度
- 保持效率(3-10个修改的批次效果最佳)
建议的批次分组:- 按文档章节(例如「第3节修改」、「定义」、「终止条款」)
- 按修改类型(例如「日期修改」、「参与方名称更新」、「法律术语替换」)
- 按位置(例如「第1-3页修改」、「文档前半部分修改」)
针对每一批相关修改:a. 将文本映射到XML:在中grep文本,确认文本在word/document.xml元素中的拆分方式。<w:r>b. 创建并运行脚本:使用查找节点,实现修改,然后执行get_node。参考ooxml.md中的**「Document库」**部分了解模式。doc.save()注意:编写脚本前务必立即grep,获取当前行号并验证文本内容。每次脚本运行后行号都会变化。word/document.xml -
打包文档:所有批次完成后,将解压后的目录转换回.docx格式:bash
python ooxml/scripts/pack.py unpacked reviewed-document.docx -
最终验证:对完整文档进行全面检查:
- 将最终文档转换为markdown:
bash
pandoc --track-changes=all reviewed-document.docx -o verification.md - 验证所有修改都已正确应用:
bash
grep "original phrase" verification.md # Should NOT find it grep "replacement phrase" verification.md # Should find it - 检查未引入意外修改
- 将最终文档转换为markdown:
Converting Documents to Images
将文档转换为图片
To visually analyze Word documents, convert them to images using a two-step process:
-
Convert DOCX to PDF:bash
soffice --headless --convert-to pdf document.docx -
Convert PDF pages to JPEG images:bash
pdftoppm -jpeg -r 150 document.pdf pageThis creates files like,page-1.jpg, etc.page-2.jpg
Options:
- : Sets resolution to 150 DPI (adjust for quality/size balance)
-r 150 - : Output JPEG format (use
-jpegfor PNG if preferred)-png - : First page to convert (e.g.,
-f Nstarts from page 2)-f 2 - : Last page to convert (e.g.,
-l Nstops at page 5)-l 5 - : Prefix for output files
page
Example for specific range:
bash
pdftoppm -jpeg -r 150 -f 2 -l 5 document.pdf page # Converts only pages 2-5要对Word文档进行可视化分析,使用两步流程将其转换为图片:
-
将DOCX转换为PDF:bash
soffice --headless --convert-to pdf document.docx -
将PDF页面转换为JPEG图片:bash
pdftoppm -jpeg -r 150 document.pdf page这会生成类似、page-1.jpg等文件。page-2.jpg
参数说明:
- :将分辨率设置为150 DPI(可调整以平衡质量/大小)
-r 150 - :输出JPEG格式(如果偏好PNG请使用
-jpeg)-png - :转换的起始页码(例如
-f N表示从第2页开始)-f 2 - :转换的结束页码(例如
-l N表示到第5页结束)-l 5 - :输出文件的前缀
page
特定范围转换示例:
bash
pdftoppm -jpeg -r 150 -f 2 -l 5 document.pdf page # Converts only pages 2-5Code Style Guidelines
代码风格指南
IMPORTANT: When generating code for DOCX operations:
- Write concise code
- Avoid verbose variable names and redundant operations
- Avoid unnecessary print statements
重要提示:生成DOCX操作相关代码时:
- 编写简洁的代码
- 避免冗长的变量名和冗余操作
- 避免不必要的打印语句
Dependencies
依赖
Required dependencies (install if not available):
- pandoc: (for text extraction)
sudo apt-get install pandoc - docx: (for creating new documents)
npm install -g docx - LibreOffice: (for PDF conversion)
sudo apt-get install libreoffice - Poppler: (for pdftoppm to convert PDF to images)
sudo apt-get install poppler-utils - defusedxml: (for secure XML parsing)
pip install defusedxml
所需依赖(如果不可用请安装):
- pandoc:(用于文本提取)
sudo apt-get install pandoc - docx:(用于创建新文档)
npm install -g docx - LibreOffice:(用于PDF转换)
sudo apt-get install libreoffice - Poppler:(用于pdftoppm将PDF转换为图片)
sudo apt-get install poppler-utils - defusedxml:(用于安全XML解析)
pip install defusedxml