Beamer에서 맞춤 환경 정의

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}

그러나 현재 문제는 첫 번째 블록의 첫 글자 앞에 작은 공백이 있다는 것입니다. 나는 이 공간을 (기본적으로) 완전히 제거하거나 두 번째 블록으로 들여쓰기를 갖기를 바랍니다.

이 문제를 해결하는 방법을 아는 사람이 있나요?

여기에 이미지 설명을 입력하세요

관련 정보