Most beginners aren’t stuck because LaTeX is “hard.” They’re stuck on two practical questions: should this sit in the sentence or on its own line? And which handful of commands show up every week?
Here’s the classroom/homework version. Keep the formula editor open while you try them.
Inline or display
Short variables and simple relations belong in the sentence—“let (a>0)”.
Definitions, theorem statements, and key derivation steps read better on their own line. Nested fractions, sums, and integrals usually want display too—cramming them into a paragraph is miserable for everyone.
Learn these five first
- Fraction:
\frac{num}{den}— highest frequency. - Indices:
x^2,a_n; brace multi-level bits likex^{2n}. - Roots:
\sqrt{x},\sqrt[n]{x}. - Sum / integral:
\sum_{i=1}^{n},\int_{a}^{b}. - Sized parentheses:
\left( ... \right)so big fractions aren’t wrapped in tiny fences.
Text in subscripts goes in \text{} (e.g. x_{\text{max}}). Bare max renders like three italic variables.
A low-friction practice loop
Skip the full manual. Insert a fraction/root/sum from the toolbar, then open the LaTeX bar and see what it produced. Later, use align for multi-line work in your document.
More on the two-way workflow: LaTeX and WYSIWYG. Pick the ugliest expression in this week’s homework and get it right in the editor first.
