General ⇒ enlarge width of items with shrink in beamer class
enlarge width of items with shrink in beamer class
I found shrink option useful for some frames on which all information on a topic could be fit. However, I noticed that when using itemize environment, even at first level, the itemized sentence could be shrunk in width which spands on more than one line. Is there any way to enlarge this width with shrink option? For ex, on the attached file, I wish that "read a book, confuse a cat, watch TV, cook, sleep and many other things to do . . ." hold on a line or at least more words could be on the same line. I think if there are more sections and subsection which reduce frame size, would influence on this width limited by shrink. For ex, in the attached file, the header of the frame is not large but if it were, the width of the items would have been less.
Independent questions: how to insert a subtitle in the frame footline if the title is long to be fitted? How to remove title and author from the footline?
Cheers,
- Attachments
-
- test3.pdf
- (33.55 KiB) Downloaded 547 times
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
enlarge width of items with shrink in beamer class
you can use shrink=<minimum shrink percentage>. This is well documented in the beamer user guide (pages 57 and 58). Also take this into account:
beamer user guide wrote:Using this option [...shrink...] is very evil. It will result in changes of the font size from slide to slide, which is a typographic nightmare. Its usage can always be avoided by restructuring and simplifying frames, which will result in a better presentation.
Re: enlarge width of items with shrink in beamer class
Carol
enlarge width of items with shrink in beamer class
You are welcome. I overlooked those questions.carol wrote:thanks. How about the questions on footer?
What beamer theme are you using? Do you want to suppress tha author's name and the title in all the frames or just in a particular one?
Re: enlarge width of items with shrink in beamer class
Moreover, I have noticed the limited width of some items when using allowframebreaks. Is there any way to enlarge the width when this option is used?
Cheers,
enlarge width of items with shrink in beamer class
for boyh variations, one option could be to use the optional arguments of the corresponding commands:
Code: Select all
\documentclass{beamer}
\usetheme{Warsaw}
\title[Short Title]{Long Title for the Presenation}
\author[Short A Name]{Long Author's Name}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
Test frame
\end{frame}
\end{document}
Code: Select all
\documentclass{beamer}
\usetheme{Warsaw}
\title[]{Long Title for the Presentation}
\author[]{Long Author's Name}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
Test frame
\end{frame}
\end{document}