您的位置:首页 > 其它

latex幻灯片

2015-09-17 11:28 295 查看
\documentclass{beamer}
\usepackage[space,space,hyperref]{ctex}
\usetheme{warsaw}
\author{XingFuCheng}
\title{支持向量机}
\begin{document}

\frame{\titlepage}
\begin{frame}[c]\frametitle{支持向量机}
The context goes here,中文
\end{frame}

%目录
\begin{frame}\frametitle{Outline}
\tableofcontents[part=1,pausesections]
\end{frame}

%无序列表
\begin{frame}
\begin{itemize}
\item The first item
\item The second item
\item The third item
\item The fourth item
\end{itemize}
\end{frame}

%有序列表
\begin{frame}
\begin{enumerate}
\item The first item
\item The second item
\item The third item
\item The fourth item
\end{enumerate}
\end{frame}

%字体
\begin{frame}
\emph{Sample Text}
\textbf{Sample Text}
\textit{Sample Text}
\textsl{Sample Text}
\alert{Sample Text}
\textrm{Sample Text}
\textsf{Sample Text}
\textcolor{green}{Sample Text}
\structure{Sample Text}
\end{frame}

%分栏
\begin{frame}
\begin{columns}
\column{.60\textwidth}
First column text and/or code
\column{.40\textwidth}
Second column text and/or code
\end{columns}
\end{frame}

%插入表格
\begin{frame}
\begin{table}[tb]
\centering
\caption{Caption here\label{tab:tablename}}
\begin{tabular}{l|cc} \hline
\textbf{column 1} & \textbf{column 2} & \textbf{column 3} \\ Hello & Beamer & NAN \\ \hline
$\alpha+\beta$ & $\gamma+\eta$ & 34\% \\ \hline
\end{tabular}
\end{table}
\end{frame}

%插入图片
\begin{frame}
\begin{figure}[tb]
\centering
%\includegraphics[width=0.9\textwidth]{figure.png}
\caption{Caption here\label{fig:figure1}}
\end{figure}

\end{frame}

\end{document}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: