Word to PDF
Why the conversion exists, what it preserves, and what it cannot.
Two different document models
A .docx file is an Office Open XML package - a zipped collection of XML parts describing text, styles, and structure. It is editable by design and reflows to fit the reader's page size and font availability. A PDF, by contrast, is a fixed-layout description of a page, a sequence of drawing instructions intended to render identically on any device. One format prioritizes editability; the other prioritizes reproducibility.
A brief history of the format
PDF originated in 1993 inside Adobe as a derivative of PostScript. For most of its first decade it was a proprietary specification. In 2008 it was standardized as ISO 32000-1, and in 2020 the current edition ISO 32000-2 added improvements to typography, 3D graphics, digital signatures, and alignment with the PDF/UA accessibility and PDF/A archival subsets. The format is now genuinely open.
When the conversion is worth it
The round-trip earns its keep when the goal is preservation rather than editing - archiving a signed contract, producing print-ready output, emailing a proposal where line breaks must not shift, or meeting an accessibility or archival standard such as PDF/UA or PDF/A. It is the wrong choice when the receiver actually needs to continue editing, in which case the original Word file should travel with them.
Paths that don't require an upload
Microsoft Word itself exports to PDF via Save As - PDF. LibreOffice Writer can do the same, and can also be driven from the command line with soffice --headless --convert-to pdf for batch jobs. Pandoc goes in the other direction, converting Markdown, DOCX, and many other sources into PDF through a LaTeX pipeline. None of these require sending a document to a third-party service.
Where PDF meets music notation
Music notation is one of PDF's clearest wins. Sheet music, lyric sheets, and liner notes all need the fixed-layout guarantee the format provides - staves, chord charts, and bar structure cannot shift between readers. The task of finding the underlying song belongs to a different layer: a song discovery surface like SongUnique tends to be where that side of the ecosystem lives.
References
- Portable Document Format - Wikipedia. Format history and current specification.
- ISO 32000-2:2020 - Document management: Portable document format. The current standardized specification.
- Exporting to PDF - LibreOffice Help. An open-source path that keeps documents local.