split by functions

This commit is contained in:
zbowang 2018-11-27 20:50:51 +08:00
parent 08128c7bb4
commit a66026b364
5 changed files with 189 additions and 200 deletions

View File

@ -1,26 +1,3 @@
%-------------------main body-------------------------%
\usepackage[english]{babel}
\usepackage{amsmath,amssymb,amstext} % math
\usepackage{float}
\usepackage{array} % array table
\usepackage{fancyhdr} % header footer
\usepackage{graphicx} % figure
\usepackage{lmodern}
\usepackage{xcolor}
\usepackage{algorithm2e}
\usepackage{booktabs}
\author{Zhibo Wang}
\title{Beamer Theme}
\date{November 26th, 2018}
\AtBeginSection[]{
\frame{\frametitle{Outline}\tableofcontents[currentsection,
subsectionstyle=show/show/shaded]}
}
\begin{document}
\frame[plain]{\titlepage}
\frame{\frametitle{Outline}\tableofcontents}
@ -178,8 +155,6 @@
\subsection{Table}
\begin{frame}{Create Tables}
\begin{center}
\begin{table}[!t]
@ -198,10 +173,10 @@
\end{center}
\end{frame}
\section{Conclusion}
\begin{frame}{End}
This document just aims to test styles in beamer.
\end{frame}
\end{document}

View File

@ -1,3 +1,7 @@
\documentclass[aspectratio=169]{beamer}
\input{template_long.tex}
\input{pkgs.tex}
\input{setting169.tex}
\input{global.tex}
\begin{document}
\input{content.tex}
\end{document}

View File

@ -1,10 +1,7 @@
\documentclass{beamer}
\usetheme{Copenhagen}
\usecolortheme{beaver}
\input{template_short.tex}
\input{pkgs.tex}
\input{global.tex}
\input{setting43.tex}
\begin{document}
\input{content.tex}
\end{document}

8
global.tex Normal file
View File

@ -0,0 +1,8 @@
\author{Zhibo Wang}
\title{Beamer Theme}
\date{November 26th, 2018}
\AtBeginSection[]{
\frame{\frametitle{Outline}\tableofcontents[currentsection,
subsectionstyle=show/show/shaded]}
}

5
pkgs.tex Normal file
View File

@ -0,0 +1,5 @@
\usepackage[english]{babel}
\usepackage{fancyhdr} % header footer
\usepackage{graphicx} % figure
\usepackage{algorithm2e}
\usepackage{booktabs}