Code: Select all
Code, edit and compile here:
\documentclass{article}\begin{document}\begin{itemize}\item[{\bf Alice}] text\item[{\bf Bob}] text\item[{\bf Carl}] text\end{itemize}\end{document}
Code: Select all
\documentclass{article}\begin{document}\begin{itemize}\item[{\bf Alice}] text\item[{\bf Bob}] text\item[{\bf Carl}] text\end{itemize}\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
itemize
is for bulleted lists. I recommend to use a description
list:Code: Select all
\documentclass{article}\begin{document}\begin{description}\item[Alice] text\item[Bob] text\item[Carl] text\end{description}\end{document}
Code: Select all
\documentclass{article}\usepackage{enumitem}\SetLabelAlign{parright}{\parbox[t]{\labelwidth}{\raggedleft#1}}\setlist[description]{align=parright,labelindent=-2cm,labelwidth=!}\begin{document}\begin{description}\item[Abraham] text text text\item[Bob] text\item[Charles] text\end{description}\begin{itemize}\item text\item[Abraham] text\end{itemize}\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.