使用LaTeX制作PPT

时间:2024-04-07 10:32:42

参考链接: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