Hi,
When I use \begin{frame}[plain], I can get rid of all theme components (e.g., to fit a large picture), as described in the user guide.
However, I still have the text left margin. \hspace{-1cm} does not work. and I do not want to do
\setbeamersize{text margin left=0cm} as LaTeX tells me it can only be used in preamble, so that it will affect all other frames.
Any suggestions? Thanks!
Document Classes ⇒ beamer: get ride of left margin
beamer: get ride of left margin
Last edited by ltxsun on Tue Aug 03, 2010 8:20 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
beamer: get ride of left margin
Hi,
you can use a box, as the following example suggests:
you can use a box, as the following example suggests:
Code: Select all
\documentclass{beamer}
\usepackage{lipsum}
\usetheme{Warsaw}
\begin{document}
\begin{frame}[plain]
\makebox[\linewidth]{\rule{12cm}{3cm}}
\end{frame}
\begin{frame}[plain]
\makebox[\linewidth]{\parbox{12cm}{\lipsum[1]}}
\end{frame}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: beamer: get ride of left margin
Hi, gmedina, Thanks! Your code solved my problem right away!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
beamer: get ride of left margin
As it is clearly written in the Board Rules, topics with a solved problem have to be marked accordingly by the OP.
Best regards
Thorsten
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
beamer: get ride of left margin
Thanks for the reminder. I have edited the original post.
localghost wrote:As it is clearly written in the Board Rules, topics with a solved problem have to be marked accordingly by the OP.
Best regards
Thorsten