I want to justify a horizontal list. I'm able to get a horizontal list but I want to have it justified horizontally. Here's what I have so far:
\documentclass[landscape]{article}
\usepackage[inline]{enumitem}
\begin{document}
\begin{itemize*}
\item Advanced Data Science
\item Machine Learning
\item Deep Learning
\item Computer Vision
\end{itemize*}
\end{document}
• Advanced Data Science • Machine Learning • Deep Learning • Computer Vision | End of empty space
I want this justified:
• Advanced Data Science • Machine Learning • Deep Learning • Computer Vision
Anyone have any idea?
Edit: Added a reproducible example.