Document Classes ⇒ beamer: get ride of left margin
beamer: get ride of left margin
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!
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: get ride of left margin
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}
Re: beamer: get ride of left margin
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
beamer: get ride of left margin
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
beamer: get ride of left margin
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