リスト項目の内容を同じレベルに揃える

リスト項目の内容を同じレベルに揃える

次のことを実現する最善の方法は何ですか? 表形式を使用しますか?

\hfill使用したくないし、行の最後に押し出すこともしたくない。

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

より一般的に言えば

• 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

答え1

このようなもの?

ここに画像の説明を入力してください

\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}

関連情報