[Tex/LaTex] Putting anything in front of \item in lists

itemize

So for example if I have this list:

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}

\begin{document}

   \begin{itemize}
    \item one
    \clap{some text}\item two 
    \item three
    \end{itemize}

\end{document}

It would compile like this:

enter image description here

where some text is rendered in place of a first bullet, but I want it to be where I marked it with the arrow. Do you have any idea?

Best Answer

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}

\begin{document}

   \begin{itemize}
    \item one
    \item \makebox[0pt][r]{some text\hspace{0.5cm}}two
    \item three
    \end{itemize}

\end{document}

enter image description here

Related Question