How LaTeX changed my life—moving away from MS Word
Why I switched from Microsoft Word to LaTeX and how it changed my work

How LaTeX changed my life—moving away from MS Word
As an IT specialist and technical author, I worked for years with Microsoft Word. Documents, reports, technical specifications—everything was written in Word. Until I discovered LaTeX. That switch changed not only how I work but also how I think about writing.
The beginning: frustration with Word
Word is a powerful program, no question. But for technical documents I kept running into problems:
Formatting issues
- Numbering: lists that suddenly restart at 1
- Page breaks: unwanted breaks in the middle of text
- Cross-references: references that stop working
- Tables: tables that shift when you edit text
Versioning issues
Word files are binary. They are hard to diff in Git. When several people work on one document, conflicts appear quickly.
Consistency
Even with templates, keeping documents consistent was hard. Small changes often caused unwanted formatting shifts.
Performance
Large Word documents get slow. With many images, tables, and references, Word became increasingly unusable.
The discovery: LaTeX
LaTeX (pronounced “LAY-tekh” or “LAH-tekh”) is a document preparation system built on TeX. Instead of working in a WYSIWYG editor, you write in a markup language.
Example:
\documentclass{article}
\begin{document}
\section{Introduction}
This is a paragraph with \textbf{bold text} and
\emph{italic text}.
\end{document}
That may look complicated at first, but the benefits are huge.
Why LaTeX is better (for me)
1. Consistency
LaTeX automatically keeps formatting consistent. If I use \section{}, the section is formatted correctly—font size, spacing, numbering, everything fits.
No more formatting surprises.
2. Professional appearance
LaTeX documents simply look more professional. Typography is better, spacing is correct, equations are set perfectly. LaTeX was built by mathematicians for mathematicians—and you can tell.
3. Mathematical formulas
For someone who works with technical documents, math matters. In Word, equations are tedious to enter and often look bad. In LaTeX they are simple and look perfect:
\[
E = mc^2
\]
\[
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
\]
4. Versioning
LaTeX files are plain text. They work perfectly with Git:
- Diffs are readable: you see exactly what changed
- Merge conflicts are solvable: text conflicts are easier to resolve
- History is traceable: every change is trackable
5. Automation
LaTeX can generate automatically:
- Tables of contents from headings
- Lists of figures from images
- Bibliographies formatted automatically with BibTeX
- Indexes generated automatically
6. Stability
LaTeX documents do not “break.” There are no hidden formatting gremlins. If the document compiles, it works.
7. Cross-platform
LaTeX runs on Windows, Linux, macOS. Documents look the same everywhere. No issues with different Word versions or missing fonts.
The learning curve
LaTeX has a steep learning curve. At the beginning it was frustrating:
- Syntax: the syntax takes getting used to
- Compilation: you have to compile to see the result
- Errors: error messages are sometimes cryptic
- Packages: there are thousands of packages—you have to know which ones you need
But: it is worth it. After a few weeks it becomes habit, and the benefits clearly win.
How my workflow improved
Before (Word)
- Open document
- Write text
- Format (manually)
- Insert references (manually)
- Update table of contents (manually)
- Fix formatting issues
- Format again
- …
After (LaTeX)
- Write text in the editor (with syntax highlighting)
- Compile
- View PDF
- Done
Formatting happens automatically.
Practical examples
Technical documentation
For technical documentation LaTeX is ideal:
- Code listings look perfect
- Tables are easy to create
- Diagrams can be generated automatically
- References always work
Presentations
With Beamer (a LaTeX package for slides) I build presentations:
- Consistent design
- Automatic slide numbering
- Math looks perfect
- PDF output—no compatibility issues
Résumé
I even wrote my résumé in LaTeX:
- Professional look
- Easy to update
- Consistent formatting
- PDF output
The tools I use
Editor
I use VS Code with LaTeX extensions:
- Syntax highlighting
- Auto-completion
- Live preview
- Error highlighting
Distribution
TeX Live (on Linux) or MiKTeX (on Windows)—the LaTeX distributions that contain the packages you need.
Online alternatives
For getting started there are online editors like Overleaf that require no installation.
When LaTeX makes sense
LaTeX is not for everyone. It makes sense for:
- Technical documents: specifications, manuals, reports
- Academic work: theses, dissertations
- Books: long documents with many references
- Presentations: when consistency matters
- Mathematical documents: equations look perfect
It makes less sense for:
- Letters: too heavy for simple documents
- Creative layouts: LaTeX is not built for free-form design
- Collaboration with non-technical people: not everyone can use LaTeX
My recommendation
If you:
- write technical documents
- use Git
- care about consistency
- need mathematical formulas
- want a professional look
…then try LaTeX. The learning curve is steep, but it pays off.
The switch
Moving from Word to LaTeX was not easy. There was a frustrating phase where I thought: “Why am I making life harder for myself?”
But now, after months of use, I would never go back. LaTeX changed my work:
- Faster: less time wasted on formatting
- Better: more professional output
- More reliable: no more formatting fights
- More satisfying: I can focus on content
Conclusion
LaTeX changed my life—in a good way. It is not for everyone, but for technical documents it is hard to beat. Switching from Word to LaTeX was one of the best professional decisions I have made.
If you are curious about LaTeX, I can only say: try it. There are many tutorials online, and the community is helpful. The start is hard, but it is worth it.
From Word to LaTeX—a journey that changed how I work for good.