3

enter image description hereI want to give a big symbol to my items as titles, how can do that?

\documentclass[11pt]{beamer}
\begin{document}
 \begin{itemize}
    \item \textbf{L'algorithme} %my title
\end{itemize}
\end{document}
Hind Dev
  • 641

1 Answers1

3

You can use \setbeamertemplate{itemize item}{\large $\blacktriangleright$} to modify labels of items, there are also predefined labels [triangle] , [circle], [square],[ball], which can be used like this \setbeamertemplate{itemize item}[ball].

Code

\documentclass[11pt]{beamer}
\usetheme{madrid}
\begin{document}
\begin{frame}
\begin{itemize}
\item \textbf{L'algorithme} %my title
\end{itemize}
\setbeamertemplate{itemize item}{\large $\blacktriangleright$}
\begin{itemize}
\item \textbf{L'algorithme} %my title
\end{itemize}
\end{frame}
\end{document}
Salim Bou
  • 17,021
  • 2
  • 31
  • 76
  • I've a strange problem, i changed itemize to enumerate like on the link but some frames shows up more than one time !!! – Hind Dev Mar 12 '16 at 22:00
  • it work thanks @salim bou, for the frames problem it was the <1-> I deleted it, thank you, but columns doesn't work for me, I don't understand, I'm searching – Hind Dev Mar 12 '16 at 22:05