Skip to main content
← Back to Blog

LaTeX Basics: Inline vs Display and Five Commands Worth Learning

Inline or display? Fractions, indices, roots, sums, and sized parentheses—the five commands homework uses most. Preview in NovaMath as you go.

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

  1. Fraction: \frac{num}{den} — highest frequency.
  2. Indices: x^2, a_n; brace multi-level bits like x^{2n}.
  3. Roots: \sqrt{x}, \sqrt[n]{x}.
  4. Sum / integral: \sum_{i=1}^{n}, \int_{a}^{b}.
  5. 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.