Cambio de proyector \textwidth

Cambio de proyector \textwidth

Estoy creando una presentación usando Beamer. Estoy intentando cambiarlo \textwidthpara utilizar casi toda la página (es decir \paperwidth,) para mis marcos. Lo que intento lograr es tener los menores márgenes posibles en el lado izquierdo y derecho. Para empezar, utilicé el layoutpaquete para ver cómo está configurada mi geometría. Intenté modificar los parámetros para lograr un papel "más grande" en la dimensión horizontal.

Al principio lo modifiqué \oddsidemarginy, \hoffseten realidad, movieron el marco hacia izquierda y derecha. Luego me di cuenta de que, según layout, tengo que aumentar el ancho del texto, pero nuevamente es como si el marco se moviera hacia la izquierda o hacia la derecha...

Por ejemplo, para a \paperwidth=364ptutilicé a \textwidth=360, pero lo que sucede es que el marco se desplaza hacia la derecha (observe las barras de navegación en la parte inferior del marco).

ingrese la descripción de la imagen aquí

mi codigo es

\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}

¡Lo que quiero lograr es comenzar el texto hacia la izquierda como está ahora y terminarlo más hacia la derecha! ¿Cómo se puede lograr esto?

Respuesta1

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}

ingrese la descripción de la imagen aquí

Para restaurar selectivamente márgenes más grandes para cuadros específicos podemos usar Beamer columns, así:

\begin{frame}
\begin{columns}
\column{.1\textwidth}
\column{.8\textwidth}
\tableofcontents
\column{.1\textwidth}
\end{columns}
\end{frame}

lo que resultará en:

ingrese la descripción de la imagen aquí

información relacionada