[Tex/LaTex] item tabulator same line

horizontal alignmentitemizetables

I want to put the item in the same line as the tab. Please have a look on my screenshot, how i actually want it to have.

\item Bewertung:

\begin{tabular}{l l c }
  & TestTest:  & Test \\
  & TestTestTest: & Test \\
  & TestTestTest: & Test \\
  & TestTestTestTest:  & Test\\
  & TestTestTest:  & Test\\
\end{tabular}

enter image description here

Best Answer

Don't use newlines or a paragraph after \item and add the optional [t] argument to the tabular environment (t stands for top alignment)

\documentclass{article}


\begin{document}


\begin{itemize}

\item Bewertung: \begin{tabular}[t]{l l c }
  & TestTest:  & Test \\
  & TestTestTest: & Test \\
  & TestTestTest: & Test \\
  & TestTestTestTest:  & Test\\
  & TestTestTest:  & Test\\
\end{tabular}

\end{itemize}

\end{document}

enter image description here