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.
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.
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.
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.
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:
equation*,
align*) for intermediate steps and reserve numbered equations for results you will
reference later.| 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 |
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.
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