비머 클래스를 사용하는 템플릿의 경우 프레임 내 기본 텍스트의 기본 시작 위치를 조정하는 방법

비머 클래스를 사용하는 템플릿의 경우 프레임 내 기본 텍스트의 기본 시작 위치를 조정하는 방법

beamerMicrosoft PowerPoint에서 만든 템플릿을 기반으로 클래스를 사용하여 프레젠테이션 슬라이드용 라텍스 템플릿을 만들고 있습니다 .

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

코드는 다음과 같습니다:

\documentclass{beamer}

\begin{document}

\begin{frame}{Title}{Subtitle}
This line should be 2.5 cm away from the left ledge of the slide.
\begin{itemize}
\item the item symbol {\color{blue}\small $\blacktriangleright$} should also be 2.5 cm away from the left edge of the slide.
\end{itemize}

\end{frame}

\end{document}

또한 일반 텍스트와 글머리 기호 기호를 슬라이드의 왼쪽 가장자리에서 멀리 itemiz설정 하고 싶습니다 . 2.5 cm나는 이 스타일을 템플릿( beamerinnerthememycompany.sty)에서와 같이 만들고 싶습니다. 즉, \begin{frame} and \end{frame}기본 .tex파일의 모든 항목에 대해 이 작업이 자동으로 수행되어야 한다는 의미입니다.

누구든지 나에게 어떻게 하는지 보여줄 수 있나요? 감사해요.

답변1

수정된 정의를 모르고 재정의하는 것은 시간 낭비이므로 프레임 제목을 제거했습니다.

\documentclass{beamer}

\setbeamersize{text margin left=2.5cm}
\settowidth{\leftmargini}{\usebeamertemplate{itemize item}}
\addtolength{\leftmargini}{\labelsep}

\begin{document}

\begin{frame}{Title}{Subtitle}
This line should be 2.5 cm away from the left ledge of the slide.
\begin{itemize}
\item the item symbol {\color{blue}\small $\blacktriangleright$} should also be 2.5 cm away from the left edge of the slide.
\end{itemize}

\end{frame}

\end{document}

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

관련 정보