I'm writing an article whith a specific document class. I want to create an inline list. Usually I use \usepackage[inline]{enumitem} and
\begin{enumerate*}
\item
\end{enumerate*}
for this purpose.
The class already has the enumitem package loaded, but without the inline option. Is there an option or command for add the inline option in the main text, avoiding changes in the document class?
Note: I'm using mdpi class provided by Multidisciplinary Digital Publishing Institute
\PassOptionsToPackage{inline}{enumitem}before\documentclass. – Werner Jul 08 '17 at 20:20inlineamong the document class options. – Bernard Jul 08 '17 at 20:38\begin{enumerate}[inline]even if theinlineoption isn't given to the package. – cfr Jul 08 '17 at 23:43