Text FormattingMagnetic Resonance in Medicine style

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
akyriazis
Posts: 1
Joined: Fri Oct 22, 2010 12:22 pm

Magnetic Resonance in Medicine style

Post by akyriazis »

If you are preparing a publication for the journal Magnetic Resonance in Medicine, you will have to format it according to its standards.
  1. Equations should not appear in round brackets but in square brackets.
  2. Citations should not appear in square brackets but in round brackets.
  3. The numbers in the list of authors in the references sections should not have any square brackets around them.
Here is how you can solve all these issues:

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}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply