I'm trying to define the following environment:
\newlist{aims}{enumerate}{1}
\setlist[aims,1]{
label={~ \textbullet ~ ~ ~ ~ ~\nth{\arabic*} best ~~~ =},
leftmargin=*,
align=left,
labelsep=10mm,
}
What I'd like to have is automatic 1st, 2nd, 3rd... and so on. The code above returns an error.
/home/snake91/Desktop/.econ.tex.swp:295: Missing number, treated as zero.
<to be read again>
\arabic
l.295 \item
0.000425%
[EDIT]
\documentclass[a4paper, left=5cm, right=5cm, 10pt]{article}
\usepackage{enumitem}
\usepackage[super]{nth}
\newlist{aims}{enumerate}{1}
\setlist[aims,1]{
label={~ \textbullet ~ ~ ~ ~ ~\arabic* best estimator ~~~ =},
leftmargin=*,
align=left,
labelsep=10mm,
}
\usepackage[T1]{fontenc}
\begin{document}
\begin{aims}
\item
\end{aims}
\end{document}

\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Alan Munn Mar 15 '15 at 16:24