[Tex/LaTex] Center an equation

alignequations

 \documentclass[12pt, a4paper,fleqn]{report}

\doublespacing
\usepackage[comma,super,sort&compress]{natbib}
\bibliographystyle{rsc.bst} 
\usepackage{comment}
\setcounter{secnumdepth}{4}
\usepackage{graphicx}
\usepackage{amsmath}
\graphicspath{ {images/} }


\begin{document}
\section{Molecular dynamics simulations} 

....content....

\begin{equation}
\centering
m_\mathit{i} \frac{\delta^2\mathbf{r_\mathit{i}}}{\delta \mathit{t}^2}= \mathbf{F_\mathit{i}},\mathit{i} = 1....N.
\end{equation}

Best Answer

The fleqn class option causes equations to be left-aligned (you specifically ask for this feature). Removing it restores the default behavior: centered alignment.

Related Question