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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}
-
- 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}