Beamer-改变 \textwidth

Beamer-改变 \textwidth

我正在使用 beamer 创建演示文稿。我试图更改,\textwidth以便将几乎整个页面(即\paperwidth)用作框架。我试图实现的是左侧和右侧的边距尽可能小。首先,我使用包来layout查看我的几何结构是如何设置的。我尝试修改参数,以便在水平方向上获得“更大”的纸张。

起初我修改了\oddsidemargin\hoffset但这些实际上将框架左右移动。然后我注意到,根据layout,我必须增加文本宽度,但再次就像让框架左右移动一样......

例如,对于\paperwidth=364pt我使用了\textwidth=360,但发生的事情是框架向右滚动(注意框架底部的导航栏)。

在此处输入图片描述

我的代码是

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

我想要实现的是让文本从现在的左边开始,然后从右边结束!如何实现呢?

答案1

使用

\setbeamersize{text margin left=0pt,text margin right=0pt}

梅威瑟:

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

在此处输入图片描述

为了有选择地恢复特定帧的更大边距,我们可以使用 Beamer columns,如下所示:

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

这将导致:

在此处输入图片描述

相关内容