DOCX

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
(References)
(Sample files)
(16 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|formattype=electronic
 
|formattype=electronic
 
|subcat=Document
 
|subcat=Document
 +
|subcat2=Word Processor
 +
|subcat3=Microsoft Word
 
|extensions={{ext|docx}}
 
|extensions={{ext|docx}}
 
|mimetypes={{mimetype|application/vnd.openxmlformats-officedocument.wordprocessingml.document}}
 
|mimetypes={{mimetype|application/vnd.openxmlformats-officedocument.wordprocessingml.document}}
 
}}
 
}}
Office Open XML (OOXML) representation (.DOCX) is the default file format for documents created by Microsoft Word as of Word 2007.  The format is based on [[XML]] component files in a container based on the [[ZIP]] format.  It replaced the binary [[DOC]] format used in earlier Word versions.
+
[[Office Open XML]] (OOXML) representation (.DOCX) is the default file format for documents created by Microsoft Word as of Word 2007.  The format is based on [[XML]] component files in a container based on the [[ZIP]] format.  It replaced the binary [[DOC]] format used in earlier Word versions, and comes in two flavours, 'strict' and 'transitional' (see below).
 +
 
 +
This format (or the XML components of it) has been referred to as [[WordProcessingML]], a name also used for the standalone XML files the earlier Word 2003 was able to generate.
 +
 
 +
Graphical inserted elements may be stored in the form of [[DrawingML]], embedded in the XML.
  
 
== History ==
 
== History ==
Line 13: Line 19:
 
== Format ==
 
== Format ==
  
 +
=== High-level structure ===
 
Like the other "Open XML" formats, this file format actually consists of various files (mostly [[XML]]) compressed into a [[ZIP]] archive, with this fact obscured from the end user by the use of a different file extension.
 
Like the other "Open XML" formats, this file format actually consists of various files (mostly [[XML]]) compressed into a [[ZIP]] archive, with this fact obscured from the end user by the use of a different file extension.
  
== References ==  
+
=== Strict versus Transitional ===
 +
The OOXML standard actually defines two different format variations: 'strict' and 'transitional' OOXML. The transitional form is not fully specified within the standard documentation, as it is very closely bound to the specific behaviour of Microsoft Office and the older binary formats. The strict form is the fully standardised form, but Microsoft have been slow to fully support OOXML-Strict as the default format for Office documents, leading to interoperability problems. See [http://blog.gardeviance.org/2013/12/once-more-unto-breach-dear-friends-once.html this blog post for a more detailed look at the interoperability issues], and here [https://twitter.com/swardley/status/436463566410244097 for some context from 2014 concerning government support for open formats]. Some more commentary is [http://www.robweir.com/blog/2009/11/asking-right-questions-about-office.html here].
 +
 
 +
== Specs ==
 
* [http://www.ecma-international.org/publications/standards/Ecma-376.htm ECMA-376 specification ]
 
* [http://www.ecma-international.org/publications/standards/Ecma-376.htm ECMA-376 specification ]
 
* [http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html ISO publicly available standards, including the latest ISO/IEC 29500 specification] (as of November 2012, this is ISO/IEC 29500:2012)
 
* [http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html ISO publicly available standards, including the latest ISO/IEC 29500 specification] (as of November 2012, this is ISO/IEC 29500:2012)
 +
* [http://www.digitalpreservation.gov/formats/fdd/fdd000395.shtml?loclr=blogsig OOXML Format Family -- ISO/IEC 29500 and ECMA 376 (Library of Congress)]
 +
* [http://www.digitalpreservation.gov/formats/fdd/fdd000397.shtml?loclr=blogsig DOCX Transitional (Office Open XML), Library of Congress]
 +
* [http://www.digitalpreservation.gov/formats/fdd/fdd000400.shtml?loclr=blogsig DOCX Strict (Office Open XML), Library of Congress]
 +
* [http://www.digitalpreservation.gov/formats/fdd/fdd000396.shtml?loclr=blogsig Markup Compatibility and Extensibility (Office Open XML), Library of Congress]
 +
 +
== Sample files ==
 +
* [https://www.dan.info/sampledata/msword/testing.docx Windows Word 2007 sample file]
 +
* https://telparia.com/fileFormatSamples/document/docx/
 +
 +
== Software ==
 +
* [http://johnmacfarlane.net/pandoc/ Pandoc: Document format conversion swiss-army knife]
 +
* [https://github.com/jkr/docx2pandoc docx2pandoc: translate DOCX to Pandoc output formats]
 +
* [http://textract.readthedocs.org/en/latest/ Textract: extract text from various document formats including DOCX]
 +
* [https://pypi.python.org/pypi/Python-OOXML/0.12 Python library for parsing Office Open XML files]
 +
 +
== Other links and references ==
 
* [http://en.wikipedia.org/wiki/Office_Open_XML Office Open XML : Wikipedia]
 
* [http://en.wikipedia.org/wiki/Office_Open_XML Office Open XML : Wikipedia]
 
* [http://support.microsoft.com/kb/924074 How to open new file formats in earlier versions of Microsoft Office]
 
* [http://support.microsoft.com/kb/924074 How to open new file formats in earlier versions of Microsoft Office]
 
* [http://www.forensicswiki.org/wiki/Word_Document_%28DOCX%29 Forensics Wiki article]
 
* [http://www.forensicswiki.org/wiki/Word_Document_%28DOCX%29 Forensics Wiki article]
 +
* [http://www.afr.com/p/technology/why_it_might_be_time_to_dump_word_lQriIFyzmyoStP3nijq8bO Why it might be time to dump Word]
 +
* [https://joinup.ec.europa.eu/elibrary/case/complex-singularity-versus-openness Complex singularity versus openness]
  
 
[[Category:XML based file formats]]
 
[[Category:XML based file formats]]
 
[[Category:ZIP based file formats]]
 
[[Category:ZIP based file formats]]
 
[[Category:Microsoft]]
 
[[Category:Microsoft]]

Revision as of 03:10, 16 March 2022

File Format
Name DOCX
Ontology
Extension(s) .docx
MIME Type(s) application/vnd.openxmlformats-officedocument.wordprocessingml.document

Office Open XML (OOXML) representation (.DOCX) is the default file format for documents created by Microsoft Word as of Word 2007. The format is based on XML component files in a container based on the ZIP format. It replaced the binary DOC format used in earlier Word versions, and comes in two flavours, 'strict' and 'transitional' (see below).

This format (or the XML components of it) has been referred to as WordProcessingML, a name also used for the standalone XML files the earlier Word 2003 was able to generate.

Graphical inserted elements may be stored in the form of DrawingML, embedded in the XML.

Contents

History

This (along with the other Office Open XML document types PPTX and XLSX) was initially standardized as ECMA-376 in 2006. Three versions of ECMA-376 have been produced; the second version corresponds to ISO/IEC 29500:2008, approved as an ISO/IEC standard in April 2008. Changes to the standard between 2008 and 2012 were primarily corrections based on individual defects reported as implementation of the standard proceeded and required to ensure functional interoperability with existing applications. They do not introduce new functionality.

Format

High-level structure

Like the other "Open XML" formats, this file format actually consists of various files (mostly XML) compressed into a ZIP archive, with this fact obscured from the end user by the use of a different file extension.

Strict versus Transitional

The OOXML standard actually defines two different format variations: 'strict' and 'transitional' OOXML. The transitional form is not fully specified within the standard documentation, as it is very closely bound to the specific behaviour of Microsoft Office and the older binary formats. The strict form is the fully standardised form, but Microsoft have been slow to fully support OOXML-Strict as the default format for Office documents, leading to interoperability problems. See this blog post for a more detailed look at the interoperability issues, and here for some context from 2014 concerning government support for open formats. Some more commentary is here.

Specs

Sample files

Software

Other links and references

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox