Advanced Scientific Writing with LaTeX

Applying your converted equations to a professional paper requires more than just code—it requires an understanding of mathematical typography principles. This guide walks you through the most important LaTeX techniques for producing journal-quality scientific documents, from setting up your preamble correctly to formatting complex multi-line equations and managing bibliographies.

1. Using the AMSMath Package

Always ensure you have \usepackage{amsmath} in your LaTeX preamble. This package, maintained by the American Mathematical Society, is the gold standard for high-quality mathematical layouts, including matrices, aligned multi-line equations, and split environments. Without it, many of the LaTeX commands generated by our converter will not compile correctly.

A minimal, working preamble for a scientific document looks like this:

\documentclass{article}
\usepackage{amsmath}   % Core math environments
\usepackage{amssymb}   % Extended math symbols
\usepackage{amsthm}    % Theorem environments

\begin{document}
  % Your content here
\end{document}

For most academic submissions, you will also want to include amssymb for symbols like \mathbb{R} (real numbers) and \mathfrak{g} (Fraktur letters), which are commonly used in pure mathematics and physics.

2. Automatic Equation Numbering

One of the best features of LaTeX is automatic numbering. Wrap your converted code in \begin{equation} ... \end{equation} to let LaTeX handle the numbering logic automatically. Use \label{eq:theory} immediately after \begin{equation} and then reference it anywhere in your document with \eqref{eq:theory}. LaTeX will maintain consistent numbering even if you add or remove equations later.

3. Multi-Line Equations with the Align Environment

When a single equation spans multiple lines—common in derivations and proofs—the align environment is the correct tool. Use the ampersand (&) character to define the alignment point, and \\ to break to the next line.

\begin{align}
  f(x) &= (x+1)^2 \\
       &= x^2 + 2x + 1
\end{align}

To display a group of equations without any numbering, use align*. To suppress the number on a single line within a numbered block, add \notag at the end of that line before the \\ break.

4. Structuring Your Mathematical Argument

Professional scientific writing is not just about correct equations—it is about guiding the reader through your reasoning. Follow these structural best practices adopted by top-tier journals:

5. Key Mathematical Environments at a Glance

Environment Use Case Numbered?
equation Single, important equation Yes
equation* Single equation, no number needed No
align Multi-line derivation with alignment Yes (per line)
align* Multi-line derivation, unnumbered No
gather Multiple equations, centered but not aligned Yes (per line)
cases Piecewise function definitions Inside equation
split Split one equation across lines, single number Single number

6. Managing Bibliographies with BibTeX

For any paper with citations, use BibTeX or BibLaTeX to manage your references. Create a .bib file containing your references in the BibTeX format, then include the following two lines at the end of your document body:

\bibliographystyle{plain}   % or ieeetr, apalike, etc.
\bibliography{my_references}

Most international publishers (IEEE, Springer, Elsevier) provide their own .bst bibliography style files, which you should use to ensure your reference list matches their formatting requirements exactly.

Pro Workflow Tip

Use our HWP to LaTeX converter to handle all equation conversion, then paste the results into an Overleaf project that uses your target journal's official template. This two-step workflow eliminates both manual equation rewriting and manual formatting, letting you focus entirely on the scientific content.

By automating these tedious tasks, you can focus on the scientific content rather than manual formatting. Leverage our converter to speed up your academic workflow today.

← Back to Resources