When LaTeX beats Word (and when it does not)
Pick the tool for the document: equations, long papers, citations, vs short collaborative drafts.
When LaTeX beats Word (and when it does not)
Neither tool is universally better. Word processors optimize for direct manipulation: what you see is the document. LaTeX optimizes for structure: you describe the document in plain text, and a compiler typesets it. Which model wins depends on the document in front of you, not on tribal loyalty.
Where LaTeX earns its learning curve
Equations are the clearest case. Word’s equation editor works for a homework problem; it becomes painful across a hundred numbered equations with cross-references. In LaTeX, \label and \ref keep every number correct no matter how much you reorganize, which the lesson on cross-references covers in detail.
Long structured documents behave the same way. A thesis with chapters in separate files, automatic tables of contents, and consistent heading styles is routine in LaTeX and fragile in a word processor. Citations follow the same pattern: a BibTeX database with a few hundred entries reformats itself for any journal style, where hand-maintained reference lists degrade quickly. See add citations for the mechanics.
Two quieter advantages compound over time. LaTeX source is plain text, so Git can diff and version it cleanly, and the same source produces the same PDF years later, on any machine, without layout drift.
Where Word or Google Docs is the right call
Direct-manipulation editors win when the collaboration is the document. If your co-authors are non-technical, work only in tracked changes, and need to comment this afternoon, a shared document is the practical answer. They also win for short one-off letters, where LaTeX setup costs more than the typesetting returns, and for publishers or HR departments that accept only .docx files.
A hybrid that works in practice
Keep the source of truth in LaTeX and export drafts for the people who need them. A PDF collects comments; a Pandoc-generated DOCX satisfies a .docx requirement. Decisions from those rounds get merged back into the .tex files, which remain the canonical version. The lesson on working with Word-based collaborators walks through this loop.
The short answer
Use LaTeX for anything you will cite, number, cross-reference, or revise over months. Use a word processor when the social cost of LaTeX exceeds its typesetting benefit. Both judgments are legitimate, and most researchers use both tools in a given year.