Estoy haciendo una plantilla de látex para diapositivas de presentación usando beamer
class, basada en una plantilla hecha en microsoft powerpoint.
Los códigos son los siguientes:
\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}
También quiero configurar el texto normal y el símbolo de viñeta itemiz
lejos 2.5 cm
del borde izquierdo de la diapositiva. Quiero crear este estilo como en la plantilla ( beamerinnerthememycompany.sty
), es decir, para cada uno \begin{frame} and \end{frame}
del .tex
archivo principal, esto debería hacerse automáticamente.
¿Alguien puede mostrarme cómo hacerlo? Gracias.
Respuesta1
Eliminé el título del marco, ya que sería una pérdida de tiempo redefinirlo sin conocer la definición 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}