I have managed to adjust that thanks! However if I vary \columnsep to smaller, more negative values it seems like the space between the 1st and 2nd column is shorter than the space between the 2nd and 3rd column. I would like the space to be equal between the 3 columns. I love the vertical alignment \multicols gives. I want to keep that formatting.
Also, how can I align the top margin of this list with the surrounding text? I have tried \begin{minipage}[t] except whatever is outside this environment is set to the bottom margin of that list.
Code: Select all
\documentclass[fleqn]{article}
\usepackage{amsmath}
\usepackage{multicol}
\usepackage{shortlst}
\usepackage[shortlabels,inline]{enumitem}
\usepackage[version=3]{mhchem}
\setlength{\columnsep}{-6cm}
\begin{document}
\begin{multicols}{3}
\begin{enumerate}[a)]
\item \ce{^{56}_{27}\,Co}
\item \ce{^{57}_{25}\,Mn}
\item \ce{^{55}_{26}\,Fe}
\item \ce{^{58}_{24}\,Cr}
\item \text{none of these}
\end{enumerate}
\end{multicols}
\end{document}