Graphics, Figures & Tables ⇒ Graphics in Beamer
Graphics in Beamer
Does anyone know how I maually (using no template)control the graphics in a Beamer presentation, such as change the way bullets appear?
Thanks!
Asaf
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
Graphics in Beamer
the word "template" has a special meaning when the beamer class is in use. Please describe your problem in a more accurate way.
Anyway, if I understood your question correctly, the Beamer User Guide explains how to do that. A little example:
Code: Select all
\documentclass{beamer}
\setbeamertemplate{itemize items}[square]
\begin{document}
\begin{frame}
\begin{itemize}
\item First item.
\item Second item.
\end{itemize}
\end{frame}
\end{document}