alinear el contenido de los elementos de la lista al mismo nivel

alinear el contenido de los elementos de la lista al mismo nivel

¿Cuál es la mejor manera de lograr lo siguiente? usando tabular?

No quiero usarlos \hfilly empujarlos hasta el final de la línea.

• list-item           i want this
• longggg-item        and this to be aligned
• another-item        at the same level auto

de una manera más general

• some text                  i want this                  same here
• another text               and this to be at the        same here
• not the same length        same level after let say     seconde level here

Respuesta1

¿Algo como esto?

ingrese la descripción de la imagen aquí

\documentclass{article}
\newcommand\mybullet{{\tiny\raise0.5ex\hbox{\textbullet}\ }} % custom-size "bullet"
\begin{document}

\noindent
\begin{tabular}{@{\mybullet}ll}
list-item & i want this\\
longgg-item & and this to be aligned\\
another-item & at the same level auto\\
\end{tabular}

\bigskip\noindent
\begin{tabular}{@{\mybullet}lll}
some text & i want this & same here\\
some other text & and this to be at the & same here\\
not the same length & same level after let say & seconde level here\\
\end{tabular}

\end{document}

información relacionada