Is there an easy way to make the items appear horizontally and not vertically and also be centered?
I have tried the following code but the points are squahed to the left side and there is no space in between them.
\documentclass{article}
\usepackage[inline]{enumitem}
\begin{document}
\begin{itemize}
\item Item 1
\item Item 2
\end{itemize}
\end{document}
I am thinking something like the one below where o is the "dot" made.
(space from the left side) o Item 1 (space here) o Item 2


itemjoinkey to customize the horizontal distance between adjacent items. Seomthing like `\documentclass{article}\usepackage[inline]{enumitem}
\begin{document}
\begin{itemize}[itemjoin={\hspace{1cm}}] \item Item 1 \item Item 2 \item Item 3 \item Item 4 \end{itemize}
\end{document}` or any other width of your choice should work.
– leandriis Apr 02 '21 at 11:54beforekey to add horizontal white space before the first item in your list. (\begin{itemize*}[before={\hspace{2cm}},itemjoin={\hspace{1cm}}]) – leandriis Apr 02 '21 at 11:58