使 `onlytextwidth` 成为 `columns` 的默认宽度

使 `onlytextwidth` 成为 `columns` 的默认宽度

我的典型columns环境如下所示

\begin{columns}[onlytextwidth]
        ...
\end{columns}

有没有办法[onlytextwidth]为整个文档进行设置,这样我就不必每次都输入它?

平均能量损失

\documentclass{beamer}

\begin{document}
    \begin{frame}
        \begin{columns}[onlytextwidth]
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}

        \begin{columns}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}       

    \end{frame}
\end{document}

在此处输入图片描述

答案1

您可以定义一个使用默认选项的新环境(columnsotw在下面的例子中)onlytextwidth...或者您可以使用预定义环境columnsonlytextwidth(没有任何其他选项)

在此处输入图片描述

\documentclass{beamer}
\usepackage{lipsum}

\newenvironment{columnsotw}[1][]{\columns[onlytextwidth,#1]}{\endcolumns}

\def\cola{Abc def ghi jkl mno pqr stu vwx z. Abc def ghi jkl mno pqr stu vwx z.}
\def\colb{Abc def ghi jkl.}

\begin{document}
\begin{frame}[fragile]
  \begin{columns}[onlytextwidth,b]
    \column{.4\linewidth}
    \cola
    \column{.4\linewidth}
    \colb
  \end{columns}
  \vfill
  \begin{columnsonlytextwidth}% [b] ???
    \column{.4\linewidth}
    \cola
    \column{.4\linewidth}
    \colb
  \end{columnsonlytextwidth}
  \vfill
  \begin{columnsotw}[b]
    \column{.4\linewidth}
    \cola
    \column{.4\linewidth}
    \colb
  \end{columnsotw}
  \vfill
  \begin{columns}[b]
    \column{.4\linewidth}
    \cola
    \column{.4\linewidth}
    \colb
  \end{columns}
\end{frame}
\end{document}

更好的定义(覆盖规范感知)

\newenvironment<>{columnsotw}[1][]{\columns#2[onlytextwidth,#1]}{\endcolumns}

答案2

除了创建新环境之外,另一种可能性是重新定义列环境

\documentclass{beamer}

\makeatletter
\long\def\beamer@newenvnoopt#1#2#3#4{%
    \expandafter\renewcommand\expandafter<\expandafter>\csname#1\endcsname[#2]{#3}%<- here
    \expandafter\long\expandafter\def\csname end#1\endcsname{#4}%
}
\long\def\beamer@newenvopt#1#2[#3]#4#5{%
    \expandafter\renewcommand\expandafter<\expandafter>\csname#1\endcsname[#2][#3]{#4}%<- here
    \expandafter\long\expandafter\def\csname end#1\endcsname{#5}%
}

\renewenvironment<>{columns}[1][]{%
    \begin{actionenv}#2%
        \def\beamer@colentrycode{%
            \hbox to\textwidth\bgroup%
            \leavevmode%
            \hskip-\beamer@leftmargin%
            \nobreak%
            \beamer@tempdim=\textwidth%
            \advance\beamer@tempdim by\beamer@leftmargin%
            \advance\beamer@tempdim by\beamer@rightmargin%
            \hbox to\beamer@tempdim\bgroup%
            \hbox{}\hfill\ignorespaces}%
        \def\beamer@colexitcode{\egroup%
            \nobreak%
            \hskip-\beamer@rightmargin\egroup}%
        \ifbeamer@centered\setkeys{beamer@col}{c}\else\setkeys{beamer@col}{t}\fi%
        \setkeys{beamer@col}{#1, onlytextwidth}% added "onlytextwidth"
        \par%
        \beamer@colentrycode%
        \def\beamer@colclose{}\ignorespaces}%
    {\beamer@colclose\def\beamer@colclose{}\beamer@colexitcode\end{actionenv}}%
\makeatother

\begin{document}
    \begin{frame}
        \begin{columns}[onlytextwidth]
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}

        \begin{columns}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}       

    \end{frame}
\end{document}

在此处输入图片描述

答案3

Beamer v3.65 或更新版本具有类选项,可以自动将其应用于onlytextwidth所有columns环境:

\documentclass[onlytextwidth]{beamer}

\begin{document}
    \begin{frame}
        \begin{columns}[onlytextwidth]
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}

        \begin{columns}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}
            \begin{column}{.5\textwidth}
                \rule{\textwidth}{1cm}
            \end{column}            
        \end{columns}       

    \end{frame}
\end{document}

在此处输入图片描述

相关内容