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[plain]{\titlepage}
\frame{\frametitle{Outline}\tableofcontents} \frame{\frametitle{Outline}\tableofcontents}
@ -178,8 +155,6 @@
\subsection{Table} \subsection{Table}
\begin{frame}{Create Tables} \begin{frame}{Create Tables}
\begin{center} \begin{center}
\begin{table}[!t] \begin{table}[!t]
@ -198,10 +173,10 @@
\end{center} \end{center}
\end{frame} \end{frame}
\section{Conclusion} \section{Conclusion}
\begin{frame}{End} \begin{frame}{End}
This document just aims to test styles in beamer. This document just aims to test styles in beamer.
\end{frame} \end{frame}
\end{document}

View File

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

View File

@ -1,10 +1,7 @@
\documentclass{beamer} \documentclass{beamer}
\input{pkgs.tex}
\usetheme{Copenhagen} \input{global.tex}
\usecolortheme{beaver} \input{setting43.tex}
\input{template_short.tex} \begin{document}
\input{content.tex} \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}