参考链接:https://blog.csdn.net/chichoxian/article/details/18922839
https://blog.csdn.net/han____shuai/article/details/49276831
可以使用beamer类来制作PPT,基本框架为:

\documentclass{beamer}
\usepackage{xeCJK}
\begin{document}
% section一定要写在frame框架的上面
\section{遗传算法背景}
\section{遗传算法过程}
\section{遗传算法应用}
\section{总结}

% 一般第一页显示PPT标题以及作者信息
\begin{frame}
	\title{基于遗传算法的参数优化研究}
	\subtitle {--组会报告}
	\author{winycg} % 显示作者
	\institute {UCAS} % 设置学院机构
	\date{\today}  % 显示日期
\titlepage
\end{frame}

% 第二页PPT
\begin{frame}{目录}{小标题}
\tableofcontents  % 显示目录
\end{frame}

\end{document}

使用LaTeX制作PPT
列表的使用:

\begin{frame}{遗传算法背景}
% 设置列表
\begin{itemize}
	\item 选择
	
	适应度选择
	\item 交叉
	
	单点交叉
	\item 变异
	
	均匀变异
\end{itemize}
\end{frame}

使用LaTeX制作PPT

相关文章:

  • 2021-12-24
  • 2021-12-21
  • 2021-08-03
  • 2021-08-02
  • 2022-12-23
  • 2022-01-02
  • 2021-12-31
  • 2021-12-06
猜你喜欢
  • 2021-08-10
  • 2021-08-06
  • 2022-01-14
  • 2021-11-20
  • 2021-07-07
  • 2021-11-17
  • 2022-01-10
相关资源
相似解决方案