將 `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}

在此輸入影像描述

相關內容