Como ajustar a posição inicial padrão do texto principal em um quadro, para um modelo usando a classe beamer

Como ajustar a posição inicial padrão do texto principal em um quadro, para um modelo usando a classe beamer

Estou fazendo um modelo de látex para apresentação de slides usando beamerclasse, baseado em um modelo feito em microsoft powerpoint.

insira a descrição da imagem aqui

Os códigos são os seguintes:

\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}

Quero também definir o texto normal e o símbolo de marcador itemizafastados 2.5 cmda borda esquerda do slide. Quero fazer esse estilo como no template ( beamerinnerthememycompany.sty), ou seja, para cada \begin{frame} and \end{frame}arquivo principal .tex, isso deve ser feito automaticamente.

Alguém pode me mostrar como fazer isso? Obrigado.

Responder1

Removi o frametitle, pois seria uma perda de tempo redefini-lo sem conhecer sua definição modificada.

\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}

insira a descrição da imagem aqui

informação relacionada