Ich erstelle mithilfe von Class eine Latex-Vorlage für Präsentationsfolien beamer
, basierend auf einer in Microsoft PowerPoint erstellten Vorlage.
Die Codes lauten wie folgt:
\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}
Ich möchte auch den normalen Text und das Aufzählungszeichen von itemiz
beiden 2.5 cm
vom linken Rand der Folie weg setzen. Ich möchte diesen Stil wie in der Vorlage ( beamerinnerthememycompany.sty
) machen, d. h. für jeden \begin{frame} and \end{frame}
in der Hauptdatei .tex
, das soll automatisch geschehen.
Kann mir jemand zeigen, wie das geht? Danke.
Antwort1
Ich habe den Rahmentitel entfernt, da es Zeitverschwendung wäre, ihn neu zu definieren, ohne Ihre geänderte Definition zu kennen.
\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}