一套实用的基于beamer的中文学术PPT模板(需要一定的LaTex基础)
如果不能兼顾日常的PPT汇报和论文写作,每次准备汇报PPT都花费了大量的时间,那么拥有一套LaTex语言的PPT模板就很有用了。
专注于做PPT实际就是在进行论文写作。PPT中的内容可直接复制到论文中,为论文写作节省大量排版和公式输入的时间。
本PPT模版带有右侧导航栏,可快速跳转。配色个人比较喜欢。
注意,使用该模板需要在LaTex环境中运行,而且需要一定的LaTex基础。

\documentclass{beamer}
% 中文排版支持
\usepackage{xeCJK}
% 默认的数学公式较难看,使用serif可以使得公式的样式变为常用latex的公式样式
\usefonttheme[onlymath]{serif}
% 设置幻灯片主题,这里选择带目录的侧边导航栏
\usetheme{Berkeley}
\usecolortheme{default}
% ------------------------------------------------------------
% 设置封面内容
\title{题目}
\subtitle{小标题}
\author{杜衡图南}
\institute{学校名称}
\date{\today}
% \logo{\includegraphics[height=1.5cm]{lion-logo.png}}
% 封面设置结束
% ------------------------------------------------------------
% ------------------------------------------------------------
% 在每一章节前都显示目录,并高亮接下来的小节。
\AtBeginSection[]
{
\begin{frame}
\frametitle{目录}
\tableofcontents[currentsection]
\end{frame}
}
% ------------------------------------------------------------
\begin{document}
% 封面
\frame{\titlepage}
% ---------------------------------------------------------
% 目录
\begin{frame}
\frametitle{目录}
% 显示目录,并超链接到对应的section
\tableofcontents
\end{frame}
% ---------------------------------------------------------
\section{节标题}
% ---------------------------------------------------------
\begin{frame}
\frametitle{幻灯片标题}
幻灯片内容
\end{frame}
% ---------------------------------------------------------
\end{document}