Beamer 注释页:减少左边距

Beamer 注释页:减少左边距

我正在使用 Beamer Notes,但我认为左边距有点太大,因为它大大减少了可用空间。可以减少这个吗?

这是我的代码:

\documentclass{beamer}
\usepackage{pgfpages}
\setbeamertemplate{note page}[compact]
\setbeameroption{second mode text on second screen=left}
\setbeameroption{show notes on second screen}

\begin{document}

\section{bla}
\begin{frame}{bla}
Some text.
\note[item]{This is a note item}
\note{only text note}
\end{frame}

\end{document}

这是一张边缘用红色标记的图片 在此处输入图片描述

答案1

您可以使用命令\AtBeginNote\AtEndNote来修改此行为。

对于普通音符,您可以在开头添加一些负空间,例如\hspace*{-10pt},而对于其他音符,您必须修改itemize特定长度。例如,您可以\addtolength\leftmargini{-10pt}在开头和\addtolength\leftmargini{10pt}结尾处发出,以恢复正常行为。

换句话说,你可以添加以下几行来实现你想要的

\AtBeginNote{\hspace*{-10pt}\addtolength\leftmargini{-10pt}}
\AtEndNote{\addtolength\leftmargini{10pt}}

梅威瑟:

\documentclass{beamer}
\usepackage{pgfpages}
\setbeamertemplate{note page}[compact]
\setbeameroption{second mode text on second screen=left}
\setbeameroption{show notes on second screen}

\begin{document}
\section{bla}
\begin{frame}{bla}
Some text.
\note[item]{This is a note item}
\note{only text note}
\end{frame}

\AtBeginNote{\hspace*{-10pt}\addtolength\leftmargini{-10pt}}
\AtEndNote{\addtolength\leftmargini{10pt}}

\section{bla}
\begin{frame}{bla}
Some text.
\note[item]{This is a note item}
\note{only text note}
\end{frame}
\end{document}  

您可以注意到连续帧中的差异:

在此处输入图片描述

当然,在您的文档中,将这两行放在开头。

相关内容