Estou criando uma apresentação usando o beamer. Estou tentando mudar \textwidth
para usar quase toda a página (ou seja \paperwidth
) para meus frames. O que estou tentando alcançar é ter o mínimo de margens possível nos lados esquerdo e direito. Para começar, usei o layout
pacote, para ver como está configurada minha geometria. Tentei modificar os parâmetros para conseguir um papel "maior" na dimensão horizontal.
No começo eu modifiquei \oddsidemargin
e \hoffset
mas eles realmente moveram o quadro para a esquerda e para a direita. Então percebi que, de acordo com o layout
, tenho que aumentar a largura do texto, mas novamente é como se o quadro se movesse para a esquerda/direita ...
Por exemplo, para a \paperwidth=364pt
usei a \textwidth=360
, mas o que está acontecendo é o quadro rolando para a direita (observe as barras de navegação na parte inferior do quadro).
Meu código é
\documentclass[10pt]{beamer}
\setbeamerfont{headline}{size=\footnotesize}
\usetheme{Ilmenau}
\usepackage{amsmath,amssymb}
\usepackage{layout}
%\oddsidemargin=-100pt
%\hoffset=-10pt
\textwidth=360pt
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}
\begin{itemize}
\item Cross section $A(x,y)B$ : Definition of cross section
\item %\resizebox{\textwidth}{!}{
$\dfrac{d \sigma}{d \Omega}(E,\theta) = \dfrac{Y}{N \left(Q\Omega\right)}\;,
\begin{array}{ll}
Y : & \text{Y}\\
N : & \text{N}\\
Q : & \text{Q}\\
\Omega : & \text{Angle}
\end{array}
$
%}
\item How : Like that
\end{itemize}
\end{frame}
\begin{frame}
\layout
\end{frame}
\end{document}
O que eu quero conseguir é começar o texto à esquerda como está agora e terminar mais à direita! Como isso pode ser alcançado?
Responder1
Usar
\setbeamersize{text margin left=0pt,text margin right=0pt}
MWE:
\documentclass[10pt]{beamer}
\setbeamersize{text margin left=0pt, text margin right=0pt} %new code
\setbeamerfont{headline}{size=\footnotesize}
\usetheme{Ilmenau}
\usepackage{amsmath,amssymb}
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}
\begin{itemize}
\item Cross section $A(x,y)B$ : Definition of cross section
\item %\resizebox{\textwidth}{!}{
$\dfrac{d \sigma}{d \Omega}(E,\theta) = \dfrac{Y}{N \left(Q\Omega\right)}\;,
\begin{array}{ll}
Y : & \text{Y}\\
N : & \text{N}\\
Q : & \text{Q}\\
\Omega : & \text{Angle}
\end{array}
$
%}
\item How : Like that
\end{itemize}
\end{frame}
\begin{frame}
\end{frame}
\end{document}
Para restaurar seletivamente margens maiores para frames específicos podemos usar o Beamer columns
, assim:
\begin{frame}
\begin{columns}
\column{.1\textwidth}
\column{.8\textwidth}
\tableofcontents
\column{.1\textwidth}
\end{columns}
\end{frame}
o que resultará em: