Estou fazendo um modelo de látex para apresentação de slides usando beamer
classe, baseado em um modelo feito em microsoft powerpoint.
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 itemiz
afastados 2.5 cm
da 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}