General ⇒ Beamer slides formatting
Beamer slides formatting
I've chosed the PaloAlto theme... I have a question about the alignement of the items in an itemize "loop".
How can I do if I want them to be aligned with the left margin (in line I mean with a paragraph without the itemize?
Hope I explained weel the point
thanks
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
Beamer slides formatting
Well, I frankly didn't understand what is it that you expect to achieve. Can you please try to describe more precisely your question?gozzi84 wrote:...How can I do if I want them to be aligned with the left margin (in line I mean with a paragraph without the itemize?
Hope I explained weel the point...
By default, beamer suppresses indentation, so new paragraphs will behave as you expect:
Code: Select all
\documentclass{beamer}
\usetheme{PaloAlto}
\begin{document}
\begin{frame}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
First line.
Second line.
Third line.
\end{frame}
\end{document}-
curiouslearn
- Posts: 105
- Joined: Fri Nov 30, 2007 11:32 pm
Re: Beamer slides formatting
Beamer slides formatting
if it is as curiouslearn says, then redefining \itemindent will be enough:
Code: Select all
\documentclass{beamer}
\usetheme{PaloAlto}
\begin{document}
\begin{frame}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
\begin{itemize}
\renewcommand\itemindent{-10pt}
\item First line.
\item Second line.
\item Third line.
\end{itemize}
\end{frame}
\end{document}