[Tex/LaTex] For the inline enumerate: controlling the item spacing

enumitemlists

I have

\documentclass[11pt, twoside]{article}
\usepackage[top=1in, bottom=1in, left=1.25in, right=1.25in]{geometry}
\usepackage[inline]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemsep = 1.125in, label=(\Alph*)}
\begin{document}
\begin{choices}
\item Test
\item Test
\end{choices}
\end{document}

In this case, the itemsep is meant to control the horizontal spacing between \items.

The itemsep is not functioning correctly; is there another way to do what I'm looking for? I've tried listparindent and labelsep already.

Best Answer

It is itemjoin. Here the distance between the items can be controlled.

\documentclass{article}
\usepackage[inline]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemjoin = \hspace{1.125in}, label=(\Alph*)}
\begin{document}
\begin{choices}
\item Test
\item Test
\end{choices}
\end{document}

enter image description here