我正在使用类制作用于演示幻灯片的乳胶模板beamer
,该模板基于在 Microsoft 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}