I'm trying to make all the labels of the inline list to have equal space between them, just like this: I've tried all of the commands of enumitem*, like itemsep, labelsep, labelwidth etc, but no lack.
My MWE is this:
Code: Select all
\documentclass[a4paper]{book}
\newtheorem{exercise}{}[chapter]
\usepackage[inline]{enumitem}
\begin{document}
\begin{exercise}
Text text text\\
\begin{enumerate*}[font=\bfseries]
\item [A.] 1 \item [D.] 12345 \item [E.] 123 \item [T.] 1412312
\end{enumerate*}
\end{exercise}
\begin{exercise}
Text text text\\
\begin{enumerate*}[font=\bfseries]
\item [B.] 1234154 \item [R.] 12435246523 \item [S.] 5 \item [Z.] 1
\end{enumerate*}
\end{exercise}
\end{document}