- Equations should not appear in round brackets but in square brackets.
- Citations should not appear in square brackets but in round brackets.
- The numbers in the list of authors in the references sections should not have any square brackets around them.
Code: Select all
\documentclass{article}
\usepackage{natbib}
\renewcommand{\bibnumfmt}[1]{#1}
\makeatletter
\def\@eqnnum{{\normalfont \normalcolor [\theequation]}}
\makeatother
\begin{document}
According to \cite{kyriazis10}
\begin{equation}
A=1
\end{equation}
\begin{thebibliography}{99}
\bibitem{kyriazis10} Kyriazis A, MRM formatting
\end{thebibliography}
\end{document}