The Moment of Terror
You've used Word for years. You know every formatting trick, every keyboard shortcut, every way to wrestle Track Changes into submission.
Now you're facing LaTeX. Maybe it's a thesis requirement. Maybe a journal won't accept Word. Maybe a collaborator sent you a .tex file and you have no idea what to do with it.
Your stomach drops. All those years of Word expertise—useless?
Not even close. The concepts are the same. You already know how to structure documents, create tables, manage references. The implementation is just different. And once you understand the why behind LaTeX, the how becomes obvious.
The Fundamental Difference
Word: What You See Is What You Get (WYSIWYG)
In Word:
- Click Bold button → text becomes bold
- Drag margin → margin changes
- You see the final result as you type
LaTeX: What You Mean Is What You Get
In LaTeX:
- Type
\textbf{text}→ text becomes bold when compiled - Set
\usepackage[margin=1in]{geometry}→ all margins set - You write content and commands; compilation produces the result
This separation of content from presentation is LaTeX's core philosophy.
Mindset Shifts
Shift 1: Stop Thinking About Appearance
In Word, you format as you write. In LaTeX, you mark up structure:
% You write:
\section{Introduction}
This is important \emph{emphasis}.
% LaTeX handles:
% - Section numbering
% - Font size and weight
% - Spacing before and after
% - Entry in table of contentsShift 2: Trust the Defaults
LaTeX has centuries of typographic tradition built in:
- Proper spacing after periods
- Correct kerning between letters
- Optimal line breaks
Fight the urge to micromanage. LaTeX almost always knows better.
Shift 3: Think in Structure
Instead of "this should be 14pt bold," think "this is a section heading."
Instead of "indent this paragraph," think "this is a quote."
The structure determines the appearance.
Concept Mapping: Word to LaTeX
Text Formatting
| Word | LaTeX |
|------|-------|
| Bold | \textbf{text} |
| Italic | \textit{text} or \emph{text} |
| Underline | \underline{text} (rarely used) |
| Strikethrough | \sout{text} (with soul package) |
| Superscript | \textsuperscript{text} |
| Subscript | \textsubscript{text} |
Document Structure
| Word | LaTeX |
|------|-------|
| Title | \title{} and \maketitle |
| Heading 1 | \section{} |
| Heading 2 | \subsection{} |
| Heading 3 | \subsubsection{} |
| Bullet list | \begin{itemize}...\end{itemize} |
| Numbered list | \begin{enumerate}...\end{enumerate} |
| Block quote | \begin{quote}...\end{quote} |
Page Setup
| Word | LaTeX |
|------|-------|
| Page margins | \usepackage[margin=1in]{geometry} |
| Line spacing | \usepackage{setspace} + \doublespacing |
| Font size | Document class option: \documentclass[12pt]{article} |
| Paper size | \documentclass[letterpaper]{article} |
References
| Word | LaTeX |
|------|-------|
| Insert citation | \cite{key} |
| Bibliography | \bibliography{file} |
| Footnote | \footnote{text} |
| Cross-reference | \label{name} and \ref{name} |
Converting a Word Document
Method 1: Manual Conversion
For short documents, retype with LaTeX markup:
- Create new
.texfile with basic structure - Copy text from Word, paste into LaTeX
- Apply LaTeX commands for formatting
- Recreate figures and tables in LaTeX
This ensures clean, proper LaTeX.
Method 2: Pandoc Conversion
For longer documents, automate the initial conversion:
pandoc document.docx -o document.texThen clean up the output:
- Fix markup that didn't convert well
- Replace Word artifacts with proper LaTeX
- Reorganize as needed
Method 3: Hybrid Approach
- Use Pandoc for initial conversion
- Manually improve section by section
- Recreate complex elements (tables, figures) from scratch
This balances speed with quality.
Handling Specific Elements
Tables
Word tables don't convert well. Recreate them:
\usepackage{booktabs}
\begin{table}[htbp]
\centering
\caption{Experimental results}
\begin{tabular}{lcc}
\toprule
Condition & Mean & SD \\
\midrule
Control & 42.3 & 5.1 \\
Treatment & 48.7 & 4.8 \\
\bottomrule
\end{tabular}
\end{table}Online tools like TableConvert can help translate Word tables to LaTeX.
Equations
Word's equation editor produces different format than LaTeX. Retype equations:
Word equation:
x = (-b ± √(b² - 4ac)) / 2aLaTeX equation:
\begin{equation}
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{equation}This is actually easier in LaTeX once you learn the syntax.
Images
Export images from Word and include them:
- Right-click image in Word
- Save as Picture (choose PNG or high-quality format)
- Place in your LaTeX project folder
- Include with
\includegraphics
\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\textwidth]{figure1.png}
\caption{Description of figure.}
\end{figure}References and Citations
If you used Word's citation manager:
- Export your references to BibTeX format (from Zotero, Mendeley, or EndNote)
- Save as
.bibfile - Use
\cite{}commands in LaTeX
If you manually typed references in Word:
- Find DOIs for each reference
- Use doi2bib.org to generate BibTeX entries
- Build your
.bibfile
Track Changes
Word's track changes don't transfer. For LaTeX revision tracking:
\usepackage{changes}
\added{New text}
\deleted{Removed text}
\replaced{new}{old}Or use Git for proper version control.
Common Struggles
"I can't see what I'm doing"
Use an editor with live preview, or compile frequently. The preview will become second nature.
"Why won't it put the figure HERE?"
LaTeX floats figures and tables for optimal placement. Trust it, or force placement with the float package:
\usepackage{float}
\begin{figure}[H] % Forces HERE"The formatting isn't what I want"
Resist the urge to micromanage. If the default isn't right:
- First, check if you're using the right structure
- Then, look for package options
- Only then, consider custom formatting
"I just want a simple document"
LaTeX shines for complex documents. For simple one-page documents, Word might genuinely be better. Use the right tool for the job.
Building Your LaTeX Vocabulary
Essential Commands
Start with these:
% Structure
\section{}, \subsection{}, \paragraph{}
% Text
\textbf{}, \textit{}, \emph{}
% Lists
\begin{itemize} \item ... \end{itemize}
\begin{enumerate} \item ... \end{enumerate}
% Environments
\begin{quote} ... \end{quote}
\begin{figure} ... \end{figure}
\begin{table} ... \end{table}
% References
\label{}, \ref{}, \cite{}Learn As Needed
Don't try to learn everything at once. When you need something new:
- Search "LaTeX how to [specific thing]"
- Find a working example
- Adapt it to your document
- Move on
Workflow Tips
Start with a Template
Don't create documents from scratch. Use a template that handles:
- Document class
- Package loading
- Basic formatting
Focus on content, not setup.
Compile Often
After every few changes:
- Compile
- Check output
- Fix errors immediately
Small errors caught early are easier to fix.
Keep a Cheat Sheet
Print or bookmark a LaTeX quick reference. Having common commands visible accelerates learning.
Accept the Learning Curve
The first document takes longer than in Word. The second takes less. By the fifth document, you'll be faster than Word for complex documents.
When to Use What
Use LaTeX For:
- Documents with equations
- Long documents (thesis, books)
- Documents requiring precise formatting
- Collaborative projects using version control
- Journal/conference submissions requiring LaTeX
Use Word For:
- Quick memos and letters
- Documents shared with non-LaTeX users
- Highly visual layouts (newsletters, flyers)
- When time is critical and you're not yet comfortable with LaTeX
Conclusion
Migrating from Word to LaTeX requires changing how you think about documents:
- Separate content from appearance
- Mark up structure, not formatting
- Trust the typographic defaults
- Learn commands progressively
The initial investment pays off in:
- Better handling of complex documents
- Consistent, professional output
- More reliable cross-references and citations
- No mysterious formatting corruption
Your Word knowledge isn't wasted—the concepts transfer. You're just learning a new way to express them.
Welcome to LaTeX.