使用LaTeX制作PPT

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/winycg/article/details/83050539

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

在这里插入图片描述
列表的使用:

\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}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/winycg/article/details/83050539