参考链接:https://blog.csdn.net/chichoxian/article/details/18922839
https://blog.csdn.net/han____shuai/article/details/49276831
beamer帮助文档:https://www.overleaf.com/learn/latex/Beamer
可以使用beamer类来制作PPT,基本框架为:
\documentclass{beamer}
\usepackage{xeCJK}
% 默认的数学公式较难看,使用serif可以使得公式的样式变为常用latex的公式样式
\usefonttheme[onlymath]{serif}
\begin{document}
% 一般第一页显示PPT标题以及作者信息
\begin{frame}
\title{基于遗传算法的参数优化研究}
\subtitle {--组会报告}
\author{winycg} % 显示作者
\institute {UCAS} % 设置学院机构
\date{\today} % 显示日期
\titlepage
\end{frame}
% 第二页PPT
\begin{frame}{目录}{小标题}
\tableofcontents % 显示目录,并超链接到对应的section
\end{frame}
\begin{frame}{遗传算法}{小标题}
\section{遗传算法内容}
优胜劣汰,适者生存
\end{frame}
\end{document}
列表的使用:
\begin{frame}{遗传算法背景}
% 设置列表
\begin{itemize}
\item 选择
\begin{large}
% 放大字体,由小到大:tiny,scriptsize,footnotesize,small,normalsize,
% large,Large,LARGE,huge,Huge
适应度选择
\end{large}
\item 交叉
单点交叉
\item 变异
均匀变异
\end{itemize}
\end{frame}