Here's a MWE that shows what I'm doing:
\documentclass{article}
\usepackage{amsmath,amsfonts,amssymb,blindtext, enumitem}
\setlist[enumerate]{
label={$\square$ {\small\oldstylenums{\arabic*}}},
leftmargin=2em,
}
\begin{document}
\blindtext
\begin{enumerate}
\item \label{first} An item
\item \label{second} A second item
\end{enumerate}
See point \ref{first}, but avoid looking at \ref{second}!
\end{document}
In the output, What I see is
See point ▢ 1, but avoid looking at ▢ 2!
Of course I would like to remove the "▢" symbol. Is there a way to do it?
ref={\arabic*}You do know there is a manual? – John Kormylo Jun 23 '17 at 12:22enumitem? That's fine; I didn't know how to search for it. – fosco Jun 23 '17 at 12:25>texdoc enumitem... – Kumaresh PS Jun 23 '17 at 15:23