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}
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis