Определите пользовательскую среду в Beamer

Определите пользовательскую среду в Beamer

Мне бы хотелось иметь среду для написания сценариев для каждого слайда.

Я не знаю, есть ли у Beamer такая среда, поэтому я пытаюсь создать свою собственную следующим образом.

Я бы хотел, чтобы эта среда сценария:

  • имеют большую ширину, чем у слайдов Бимера
  • иметь верхние и нижние поля
\documentclass[11pt]{beamer}

\makeatletter
\newenvironment{script}{
\begin{columns}
    \begin{column}{1.1\textwidth}
        \setlength{\parindent}{0.5cm}
        \par\vspace{\baselineskip}\noindent
        \scriptsize
}{
    \end{column}
\end{columns}
\par\vspace{\baselineskip}\noindent\ignorespaces
}
\makeatother

\begin{document}

\begin{script}
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
\end{script}

\end{document}

Однако текущая проблема заключается в том, что перед первой буквой первого блока есть небольшой пробел. Надеюсь, мы либо полностью удалим этот пробел (по желанию), либо сделаем отступ во втором блоке.

Кто-нибудь знает, как это исправить?

введите описание изображения здесь

Связанный контент