I am currently using enumitem and made an environment for my lists in a document. It is the following:
\newenvironment{alternativas}[1][0]
{
\begin{enumerate}[label={\Alph*)}, itemsep=#1cm, topsep = 0.5cm, wide=0pt,labelwidth=.5cm,leftmargin=!]
}
{
\end{enumerate}
}
I've been trying to align the items ignoring the negative sign, if the item starts with one. Images will explain it a lot better than me:
I've searched for similar questions and I've only found people with this problem on a table, and solutions usign align environments and stuff like that. I even searched for something to solve this in TeX books (and accidentally learned a lot while doing that haha) but I haven't been successful.
Many solutions for these similar problems also make use of some manual adjustment, like using a \phantom in the items without a minus sign so that the spacing looks equal (I produced the wanted result using \hspace with a negative number). But I have been searching for a solution that automatizes this for me, because I share the documents with less experienced people and want it to be easy for them to use. Thank you very much!





\itemis NOT an argument and cannot be parsed easily. – John Kormylo Mar 26 '20 at 13:46